Created
August 15, 2015 11:13
-
Star
(123)
You must be signed in to star a gist -
Fork
(11)
You must be signed in to fork a gist
-
-
Save yesvods/51af798dd1e7058625f4 to your computer and use it in GitHub Desktop.
Merge Arrays in one with ES6 Array spread
This file contains 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
const arr1 = [1,2,3] | |
const arr2 = [4,5,6] | |
const arr3 = [...arr1, ...arr2] //arr3 ==> [1,2,3,4,5,6] |
ddoooppppeeeeee....easiest answer ive ever googled
This is so strange.. I rather use
arr3= arr1.concat(arr2)
This way has a lot of performance issues
_travelDevs
Thanks.. Its working. You make my day
I'm getting an error jQuery is not defined?
this es6 solution is also pretty cool
const concat = (...args) => args.flat();
concat([1, 2, 3], [4, 5], [6, 7]); //➞ [1, 2, 3, 4, 5, 6, 7]
I'm getting an error jQuery is not defined?
You need to add jQuery external link in script tag
arr3 = [...arr1, ...arr2];
will fail if any of them are null.
const arr = [[1,2,3], [4,5,6]]
const merged = arr.reduce((a, b) => { a.splice(0, 0, b); return a; }, [])
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you want to merge Objects in Array, then
will result