Skip to content

Instantly share code, notes, and snippets.

@alexnault
Created March 24, 2019 01:27
Show Gist options
  • Save alexnault/8809663a02ddb96612ca3e6d521f13c5 to your computer and use it in GitHub Desktop.
Save alexnault/8809663a02ddb96612ca3e6d521f13c5 to your computer and use it in GitHub Desktop.
Immutabilty example in JavaScript
// mutable
const bands = ["Metallica", "Queen"];
bands.push("Nirvana");
// immutable
const someBands = ["Metallica", "Queen"];
const bands = [...someBands, "Nirvana"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment