Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created March 19, 2019 03:23
Show Gist options
  • Save tkssharma/f5121468da4d6a2ce37e8517e094b299 to your computer and use it in GitHub Desktop.
Save tkssharma/f5121468da4d6a2ce37e8517e094b299 to your computer and use it in GitHub Desktop.
// expand using spread operator
let arr = ['a','b'];
let arr2 = [...arr,'c','d'];
console.log(arr2); // [ 'a', 'b', 'c', 'd' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment