here is my string:
var str = "This is my \string";
This is my code:
var replaced = str.replace("/\\/", "\\\\");
I can't get my output to be:
"This is my \\string"
I have tried every combination I can think of for the regular expression and the replacement value.
Any help is appreciated!