Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 15, 2023 11:27
Show Gist options
  • Save ilyasozkurt/65d83aeb0c6dd83a42c5f1e42b4351db to your computer and use it in GitHub Desktop.
Save ilyasozkurt/65d83aeb0c6dd83a42c5f1e42b4351db to your computer and use it in GitHub Desktop.
var text = "apple banana cherry";
var new_text = text.replace(/a/g, "b");
console.log(new_text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment