Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created June 9, 2017 13:04
Show Gist options
  • Save andreasvirkus/3d0d1ae1dcc88aeebb99e0d397fcda1d to your computer and use it in GitHub Desktop.
Save andreasvirkus/3d0d1ae1dcc88aeebb99e0d397fcda1d to your computer and use it in GitHub Desktop.
// 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