Created
June 17, 2011 22:03
-
-
Save anonymous/1032466 to your computer and use it in GitHub Desktop.
peachys - http://pastebin.com/2riMWc8p
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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