Created
March 19, 2019 03:23
-
-
Save tkssharma/f5121468da4d6a2ce37e8517e094b299 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
// 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