Last active
January 15, 2018 10:57
-
-
Save bansalayush/c56c08a9d09557eb43938983359cde12 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
//in babel //in javascript | |
const arr1 = ['a','b','c']; var arr1 = ['a', 'b', 'c']; | |
const arr2 = ['d','e','f']; var arr2 = ['d', 'e', 'f']; | |
var arr3= [...arr1,...arr2]; var arr3 = [].concat(arr1, arr2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment