Skip to content

Instantly share code, notes, and snippets.

@vitkarpov
Created February 3, 2016 17:50
Show Gist options
  • Save vitkarpov/9054bad8b149aa260759 to your computer and use it in GitHub Desktop.
Save vitkarpov/9054bad8b149aa260759 to your computer and use it in GitHub Desktop.
Strings are immutable
var a = "foo";
var b = a;
// b remains the same
a += "bar";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment