Created
March 19, 2019 03:23
-
-
Save tkssharma/25927523226f3a8239a73bc44a36b33c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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