Created
January 1, 2021 15:30
-
-
Save shahab570/3911ec5fc0c03c04d0aae7377b1ae4ec 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 x = [1,2,3]; | |
let y = [4, 5,6]; | |
console.log([...x,...y]); ///[1,2,3,4,5,6] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment