Browse the latest JavaScript performance benchmarks created by the community.
Compare newer version of bignumer libraries.
No description provided
No description provided
No description provided
No description provided
No description provided
Tests the speed of creating a comma delim string
Compare the new ES6 spread operator with the traditional concat() method
No description provided
No description provided
No description provided
No description provided
Determine the fastest way to remove a string from the end of another string.
No description provided
comparing gzip compatible compression and decompression of pako with fflate
comparing zlib compatible compression and decompression of pako with fflate
spread operator vs object assign vs object setPrototypeOf vs reflect setPrototypeOf
No description provided
No description provided
No description provided
No description provided
A demonstration of efficient and inefficient eculidean distance comparisons
No description provided
This benchmark compares the performance of lodash's `union` function with native JavaScript code for creating an array of unique values from all given arrays. The lodash `union` function creates an array of unique values, in order, from all given arrays. The native JavaScript code uses the `Array.prototype.concat()` method combined with `new Set()` to achieve the same result.
This benchmark compares the performance of lodash's `has` function with native JavaScript code for checking if an object has a specific property. The lodash `has` function checks if `path` is a direct property of `object`. The native JavaScript code uses the `in` operator to check if an object has a specific property.