-
-
Save ilyasozkurt/65d83aeb0c6dd83a42c5f1e42b4351db to your computer and use it in GitHub Desktop.
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 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