Skip to content

Instantly share code, notes, and snippets.

@munificent
Created March 14, 2019 22:25
Show Gist options
  • Save munificent/a23259b20aebfce6fc2300e1305af106 to your computer and use it in GitHub Desktop.
Save munificent/a23259b20aebfce6fc2300e1305af106 to your computer and use it in GitHub Desktop.
var a = [2, 3];
var b = [5, 6];
var c = [1, ...a, 4, ...b]; // [1, 2, 3, 4, 5, 6].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment