Skip to content

Instantly share code, notes, and snippets.

@onosendi
Created November 6, 2023 18:14
Show Gist options
  • Save onosendi/7d2cc69bc18a264b40b8be74a56b4eb0 to your computer and use it in GitHub Desktop.
Save onosendi/7d2cc69bc18a264b40b8be74a56b4eb0 to your computer and use it in GitHub Desktop.
const start = performance.now();
Array.from({ length: 10000000 }, () => undefined);
const end = performance.now();
console.log({ performance: end - start });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment