Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created March 19, 2019 03:23
Show Gist options
  • Save tkssharma/25927523226f3a8239a73bc44a36b33c to your computer and use it in GitHub Desktop.
Save tkssharma/25927523226f3a8239a73bc44a36b33c to your computer and use it in GitHub Desktop.
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