jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Just want to verify what method of JS Map cloning is fastest
let arr = new Array(10000)
for (let i = 0; i < 10000; i++) {
arr[i] = ['key' + i, 'value' + i]
}
let map = new Map(arr)
/** Copied from obliterator/forEach */
const support = {
ARRAY_BUFFER_SUPPORT: typeof ArrayBuffer !== 'undefined',
SYMBOL_SUPPORT: typeof Symbol !== 'undefined'
}
var ARRAY_BUFFER_SUPPORT = support.ARRAY_BUFFER_SUPPORT;
var SYMBOL_SUPPORT = support.SYMBOL_SUPPORT;
function forEach(iterable, callback) {
var iterator, k, i, l, s;
if (!iterable) throw new Error('obliterator/forEach: invalid iterable.');
if (typeof callback !== 'function')
throw new Error('obliterator/forEach: expecting a callback.');
// The target is an array or a string or function arguments
if (
Array.isArray(iterable) ||
(ARRAY_BUFFER_SUPPORT && ArrayBuffer.isView(iterable)) ||
typeof iterable === 'string' ||
iterable.toString() === '[object Arguments]'
) {
for (i = 0, l = iterable.length; i < l; i++) callback(iterable[i], i);
return;
}
// The target has a #.forEach method
if (typeof iterable.forEach === 'function') {
iterable.forEach(callback);
return;
}
// The target is iterable
if (
SYMBOL_SUPPORT &&
Symbol.iterator in iterable &&
typeof iterable.next !== 'function'
) {
iterable = iterable[Symbol.iterator]();
}
// The target is an iterator
if (typeof iterable.next === 'function') {
iterator = iterable;
i = 0;
while (((s = iterator.next()), s.done !== true)) {
callback(s.value, i);
i++;
}
return;
}
// The target is a plain object
for (k in iterable) {
if (iterable.hasOwnProperty(k)) {
callback(iterable[k], k);
}
}
return;
};
Ready to run.
Test | Ops/sec | |
---|---|---|
Mnemonist approach |
| ready |
Native for..of |
| ready |
Clone from entries |
| ready |
Use native map cloning |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.