Skip to content

Instantly share code, notes, and snippets.

@lelouchB
Last active August 3, 2019 08:26
Show Gist options
  • Save lelouchB/fe9bf281c7c43c2ee56c56ecd724f4cc to your computer and use it in GitHub Desktop.
Save lelouchB/fe9bf281c7c43c2ee56c56ecd724f4cc to your computer and use it in GitHub Desktop.
let firstArray = [1,2,3,'Shinchan']
let secondArray = ['Nohara',4,5,6]
let thirdArray = [7,8,9,'Himawari']
let combinedArray = [].concat(firstArray,secondArray,thirdArray)
console.log(`Combined Array = `+combinedArray)
//Combined Array=1,2,3,Shinchan,Nohara,4,5,6,7,8,9,Himawari
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment