Skip to content

Instantly share code, notes, and snippets.

Created June 17, 2011 22:03
Show Gist options
  • Save anonymous/1032466 to your computer and use it in GitHub Desktop.
Save anonymous/1032466 to your computer and use it in GitHub Desktop.
var a = new String("abcdefg[");
var b = a.replace('[','Z');
document.write("b: " + b + "<br/>"); //Produces result "b: abcdefg[", desired result "b: abcdefgZ"
b = a.replace('a','Z');
document.write("b: " + b + "<br/>"); //Produces result "b: Zbcdefg["
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment