Benchmark name When Created
If-or-object-2 6 years ago
.startsWith vs .charAt for single character v2

Testing some things

6 years ago
.startsWith vs .charAt for single character

Testing some things

6 years ago
if comparison to array.includes 6 years ago
Map .has() vs .get()

This is to compare the cost of this pattern ```if (map.has(key)) func1(map.get(key))``` v/s ```const v = map.get(key); if (v) func1(v);```

6 years ago
Array vs Linked List (push)

Manage Todos in a list - compare performance of Array vs Linked List.

6 years ago
Lodash isEqual test with Equation

Test on isEqual performance

6 years ago
Ramda vs. Lodash (fix)

Compares performance on the same task using Lodash vs two styles of Ramda vs two styles of "native" Javascript. In all cases the task is pulling "counter" property from each item in an array, filtering out odd items, squaring them, then returning those squared values that have less than two digits.

6 years ago
object.assign vs spread vs create new object object.assign 6 years ago
object.assign vs spread (when base object is large) fixed 6 years ago
object.assign vs spread (when base object is large) 6 years ago
Single function vs Multiple functions

Single function vs Single responsibility in performance

6 years ago
Daily/Weekly using Date vs Math 6 years ago
for vs forEach (working) 6 years ago
Array.prototype.concat vs spread operator with more numbers

Compare the new ES6 spread operator with the traditional concat() method

6 years ago
Array.prototype.concat vs spread operator1223

Compare the new ES6 spread operator with the traditional concat() method

6 years ago
Array.prototype.concat vs spread operator122

Compare the new ES6 spread operator with the traditional concat() method

6 years ago
for / reduce 6 years ago
Way of retrieving nullable value 6 years ago
Lodash vs native 6 years ago
concat vs lodash.concat 6 years ago
Compare performance between 2 constructors pattern 6 years ago
name12 6 years ago
Spread operator vs push 6 years ago
lodash for-in vs native for-in (lodash version: 4.17.10)

lodash for-in vs native for-in (lodash version: 4.17.10)

6 years ago

 Create Your benchmarks


;