Skip to content

Instantly share code, notes, and snippets.

@Tonel
Created September 2, 2022 14:34
Show Gist options
  • Save Tonel/3eb279c45b03d99272773e06226a9135 to your computer and use it in GitHub Desktop.
Save Tonel/3eb279c45b03d99272773e06226a9135 to your computer and use it in GitHub Desktop.
const array1 = [];
// adding 100k elements to array1
for (let i = 0; i < 500000; i++) {
array1.push(i);
}
// creating a copy of the array1 variable
const array2 = [];
// adding one element at a time
array1.forEach((e) => {
array2.push(e);
});
console.log(array2.length); // 500000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment