Benchmark name | When Created |
---|---|
Lodash Filter test | one month ago |
loop speed
i < len versus none item |
one month ago |
Dot property set notation VS Lodash.set(nested)
Compares different approaches to set an object property |
one month ago |
URL.toString() vs String(URL)
Testing different ways to convert JavaScript's URL object to its string representation. |
one month ago |
compare the ways to generate an array filled with empty objects for iteration 2
- Array.push - Array.apply: Array.apply(null, Array(100)) - Destructuring operator: [...Array(100)] - Array.prototype.fill Array(100).fill(undefined) - Array.from Array.from({ length: 100 }) |
one month ago |
compare the ways to generate an array filled with empty objects for iteration
- Array.push - Array.apply: Array.apply(null, Array(100)) - Destructuring operator: [...Array(100)] - Array.prototype.fill Array(100).fill(undefined) - Array.from Array.from({ length: 100 }) |
one month ago |
replace w/ RegExp vs replaceAll | one month ago |
starts/endswith vs regex.test | one month ago |
r includes vs regex | one month ago |
replaceAll vs non-regex replace | one month ago |
Errors grbtgrh | one month ago |
Array.reduce vs for of loop with set
A test summing 1000 random numbers, 1 - 10000 |
one month ago |
indexOf !== -1 vs > -1 | one month ago |
Object.fromEntries vs for of Object.keys | one month ago |
React useCallback hook vs. custom hook (React 18) | one month ago |
Map vs Object (Lookup then delete keys fix) Performance
Lookup of map vs object then delete keys w/o checking |
one month ago |
Map vs Object (Lookup then delete keys) Performance
Lookup of map vs object then delete keys |
one month ago |
set.has vs. array.includes vs plain object (100 000) | one month ago |
set.has vs. array.includes vs plain object | one month ago |
set.has vs. array.includes (length : 3) | one month ago |
sanitize-htmlq@2.14.0 vs DOMpurify@3.2.4 | one month ago |
Conso duplicates solution 2 | one month ago |
Conso duplicates solution | one month ago |
Lodash vs. Ramda vs. VanillaJS
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. Comparing performance of: Lodash funcional style (idiomatic) vs Lodash funcional style (performance optimized with spread) vs Ramda without relying on currying or composition vs Ramda with currying and composition vs Ramda with transducers vs VanillaJS funcional style (idiomatic) vs VanillaJS funcional style (performance optimized with spread) vs VanillaJS procedural. |
one month ago |
Concat vs push(...) for large arrays 223123
Comparing the various ways to append to a large array |
one month ago |