Skip to content

Instantly share code, notes, and snippets.

@kadikraman
Created April 25, 2017 15:43
Show Gist options
  • Select an option

  • Save kadikraman/349157a7de2917b9a6d81c3d81834665 to your computer and use it in GitHub Desktop.

Select an option

Save kadikraman/349157a7de2917b9a6d81c3d81834665 to your computer and use it in GitHub Desktop.
JavaScript tips
/*
Replacing an item in an array without mutating it
*/
const old = [1, 2, 3, 4];
const new = Object.assign([], old, {0: 1000});
console.log(new);
// [1000, 2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment