Skip to content

Instantly share code, notes, and snippets.

@grid23
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save grid23/545540eeb5db40b33778 to your computer and use it in GitHub Desktop.

Select an option

Save grid23/545540eeb5db40b33778 to your computer and use it in GitHub Desktop.
"abc".replace(/abc/, "$&") // "abc"
"abc".replace("abc", "$&") // "abc"
"abc".replace("abc", function(){ return "$&" }) //  safari: "abc", others: "$&"
"abc".replace(/abc/, function(){ return "$&" }) // "$&"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment