Created
September 2, 2022 14:32
-
-
Save Tonel/22e0af79f40537118b79b2846d161502 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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 = []; | |
array2.push(...array1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment