Created
August 16, 2023 16:10
-
-
Save suhailgupta03/a0103727b8940f44cf8a5f824e8a2855 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
let arr1 = [ | |
1,2,3 | |
] | |
let arr2 = [ | |
4,5,6 | |
] | |
let negativeNumbers = [ | |
-1,-2,-3 | |
] | |
let arr3 = [ | |
...arr1, | |
...arr2, | |
...negativeNumbers | |
] | |
console.log(arr3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment