Benchmark name | When Created |
---|---|
JS BigInt big number performance v9
Compare Number vs BigInt for big numbers |
12 days ago |
array find vs new Set has inside a filter
I created two arrays: one with 100 numbers and another with 10,000 random numbers. Then, i filtered the first array to check for the presence of the number 5 in the second array using two different methods. In the first test case, i used the .find() method, which iterates through the 10,000-number array to locate the number 5 and returns the first matching value. In the second test case, i converted the 10,000-number array into a Set and used the .has() method to check for the presence of the number 5. The goal is to compare both approaches and determine which one is faster and which one use less memory. |
12 days ago |
Test direct and destructuring performances | 12 days ago |
Date constructor inputs (extended by input of pre-existing Date object) | 12 days ago |
Mul vs Square Root functions
Measure the performance of the Power and Square Root functions. Conclusion: The underlying math logic seems to be the same, regardless of the function used. |
12 days ago |
Lodash UniqBy vs. Vanilla alternative | 12 days ago |
Map copying | 12 days ago |
Map.values().toArray() vs Array.from(Map.values()) vs [...Map.values()] | 12 days ago |
Array.filter vs Array.splice | 12 days ago |
querySelector vs getElementsByClassName with destructuring assignment vs getElementsByClassName get first element | 12 days ago |
querySelector vs getElementsByClassName with destructuring assignment | 12 days ago |
Array.push + Array.reverse vs Array.unshift | 12 days ago |
DecodeURI Ops | 13 days ago |
querySelector vs querySelectorAll vs getElementsByClassName when trying to select by group of similar ID elements | 13 days ago |
Boolean vs !! test | 13 days ago |
String vs. Template Literal with var 2 | 13 days ago |
String vs. Template Literal with var | 13 days ago |
JavaScript spread operator vs Object.assign performance 123456 | 13 days ago |
array.splice vs for loop with 2 arrays | 13 days ago |
Array.at vs index (last element)
Measures performance between using arr.at(-1) to access the last element in the array and arr[arr.length - 1] |
13 days ago |
Logs - RegEx.test vs. String.includes vs. String.match | 13 days ago |
Set.difference vs Filter | 13 days ago |
Array.Prototype.at vs index (negative)
Measures performance between using arr.at(-1) to access an element in an array and arr[arr.length - 1] |
13 days ago |
json stringify vs object tostring 1 | 14 days ago |
Sine Approximation | 14 days ago |