Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 15:30
Show Gist options
  • Save shahab570/3911ec5fc0c03c04d0aae7377b1ae4ec to your computer and use it in GitHub Desktop.
Save shahab570/3911ec5fc0c03c04d0aae7377b1ae4ec to your computer and use it in GitHub Desktop.
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