Benchmark name | When Created |
---|---|
new Date("2020-03-20 0:04:02").getDate() | 3 years ago |
Iteration Speed 2 | 3 years ago |
StringInterpolation vs stringConcatenation | 3 years ago |
Teste some vs find | 3 years ago |
Some vs Find 100k items | 3 years ago |
Array loop vs foreach (static & index) | 3 years ago |
case insensitive comparison | 3 years ago |
slice vs substring check010
slice vs substring |
3 years ago |
Different ways (template importNode, vanilla js, innerHTML) to create DOM node | 3 years ago |
DOM get attributes of children vs JS Array READ performance v3
Results: Reading the DOM with nextElementSibling + getAttribute is less than 5% slower than an JS array list. textContent is slightly faster than a JS array list, and nodeValue is 3X faster. Listing a JS array in a for i-- loop backwards yield ~2X performance |
3 years ago |
Fastest way to list children: childNodes vs children vs firstChild/nextSibling vs firstElementChild/nextElementSibling v2 fixed
Result: firstElementChild is the fastest yielding 3-4X performance. With lastElementChild close (margin of error) 2nd. Other observations: doing for loop i-- with children shows ~150% higher performance vs i++. And unloading it into a variable prior yields another ~200% boost |
3 years ago |
Fastest way to list children: childNodes vs children vs firstChild/nextSibling vs firstElementChild/nextElementSibling v2
Result: firstElementChild is the fastest yielding 3-4X performance. With lastElementChild close 2nd. Other observations: doing for loop i-- with children shows ~150% higher performance vs i++. And unloading it into a variable prior yields another ~200% boost |
3 years ago |
foreach vs map by wayne | 3 years ago |
1 iter vs 3 iter 3 | 3 years ago |
1 iter vs 3 iter | 3 years ago |
Direct Array vs Typed Array vs Array read performances | 3 years ago |
EGO Intersection lodash vs underscore vs manual | 3 years ago |
createTextNode vs createComment | 3 years ago |
reverseArray | 3 years ago |
map speed | 3 years ago |
Remove by splice vs copyWithin vs filter (numeric array)
Deletion of an element from an array. |
3 years ago |
for-in vs for..of object.keys | 3 years ago |
absolute | 3 years ago |
_.isEqual vs dequal vs JSON.stringify
Test on _.isEqual vs dequal vs JSON.stringify performance |
3 years ago |
getElementById vs JQuery
Faster way to find element |
3 years ago |