Skip to content

Instantly share code, notes, and snippets.

@odino
Created April 21, 2018 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odino/148eaf768f63d07bfc42bc665a661cc6 to your computer and use it in GitHub Desktop.
Save odino/148eaf768f63d07bfc42bc665a661cc6 to your computer and use it in GitHub Desktop.
let m = new DumbMap()
for (x = 0; x < 1000000; x++) {
m.set(`element${x}`, x)
}
console.log(m.get('element0')) // 999988
console.log(m.get('element1')) // 999988
console.log(m.get('element1000')) // 999987
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment