Skip to content

Instantly share code, notes, and snippets.

@vitkarpov
Created February 3, 2016 17:58
Show Gist options
  • Save vitkarpov/1db1c72397f0d17c90b3 to your computer and use it in GitHub Desktop.
Save vitkarpov/1db1c72397f0d17c90b3 to your computer and use it in GitHub Desktop.
Strings are immutable
var a = "foo";
// it doesn't throw an error but in fact does nothing: a equals foo, not boo
a[0] = "b";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment