Skip to content

Instantly share code, notes, and snippets.

@shoaibmehedi7
Created April 13, 2021 12:59
Show Gist options
  • Save shoaibmehedi7/220d5a6af78169cd686888a93bf2638d to your computer and use it in GitHub Desktop.
Save shoaibmehedi7/220d5a6af78169cd686888a93bf2638d to your computer and use it in GitHub Desktop.
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