Created
June 9, 2017 13:04
-
-
Save andreasvirkus/3d0d1ae1dcc88aeebb99e0d397fcda1d 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-place merge b to a | |
let a = ['foo', 'bar'], | |
b = ['baz', 'foobar', 'foobaz']; | |
a.push(...b); | |
console.log('a with ES6 sexiness', a); | |
// or the old way | |
[].push.apply(a, b); | |
console.log('a with apply', a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment