Skip to content

Instantly share code, notes, and snippets.

@shcyiza
Last active May 27, 2019 10:39
Show Gist options
  • Save shcyiza/4519ab89140707f48af3d689d9b4e704 to your computer and use it in GitHub Desktop.
Save shcyiza/4519ab89140707f48af3d689d9b4e704 to your computer and use it in GitHub Desktop.
var arr1 = [1, 2, 3]
var obj1 = {prop1: "lol", prop2: "lmao"}
var arr2 = [...arr1, 4, 5, 6]
var obj2 = {...Obj1, prop1: "Trololo", foo: "bar"}
console.log(arr2)
//expects: [1,2,3,4,5,6]
console.log(obj2)
//expects: {prop1: "trololo", prop2: "lmao", foo: "bar"}
console.log(...arr1)
//expects: 1 2 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment