-
-
Save ilyasozkurt/6bc1a64c749b2a0c72e969de77ea6390 to your computer and use it in GitHub Desktop.
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
let arr = [1, 2, 3]; | |
let newElements = [4, 5, 6]; | |
arr = arr.concat(newElements); | |
console.log(arr); // [1, 2, 3, 4, 5, 6] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment