"abc".replace(/abc/, "$&") // "abc"
"abc".replace("abc", "$&") // "abc"
"abc".replace("abc", function(){ return "$&" }) // safari: "abc", others: "$&"
"abc".replace(/abc/, function(){ return "$&" }) // "$&"
Last active
August 29, 2015 14:02
-
-
Save grid23/545540eeb5db40b33778 to your computer and use it in GitHub Desktop.