Created
April 13, 2021 12:59
-
-
Save shoaibmehedi7/220d5a6af78169cd686888a93bf2638d 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 arrOne = [1,3,5] | |
let arrTwo = [2,4,6] | |
// first way | |
let combine = arrOne.concat(arrTwo) | |
console.log(combine) | |
// second way | |
combine = [...arrOne,...arrTwo] | |
console.log(combine) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment