Last active
January 24, 2021 16:50
-
-
Save redgeoff/13e3cb9c9e5a0982529ea3a8cd755382 to your computer and use it in GitHub Desktop.
Get first key speed test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import each from 'lodash/each'; | |
const getFirstKeyUsingEach = (obj) => { | |
let firstKey = undefined; | |
each(obj, (value, key) => { | |
firstKey = key; | |
return false; // Exit loop | |
}); | |
return firstKey; | |
}; | |
const getFirstKeyUsingObjectKeys = (obj) => { | |
return Object.keys(obj)[0]; | |
}; | |
const KEYS = 100; | |
const obj = {}; | |
for (let i = 0; i < KEYS; i++) { | |
obj[i] = { foo: 'bar' }; | |
} | |
const ITERATIONS = 100000; | |
it('first using Object.keys', () => { | |
for (let i = 0; i < ITERATIONS; i++) { | |
const key = getFirstKeyUsingObjectKeys(obj); | |
// console.log({ key }) | |
} | |
}); | |
it('first using each', () => { | |
for (let i = 0; i < ITERATIONS; i++) { | |
const key = getFirstKeyUsingEach(obj); | |
// console.log({ key }) | |
} | |
}); | |
// Results: | |
// first using Object.keys: 276, 265, 292 ms (FASTER) | |
// first using each: 299, 288, 302 ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment