Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - String replace</title> </head> <body> <h2>replace method returns a new string after replacing pattern with some other string.</h2> <script> const str = "Carbon emission is increasing day by day."; document.write(str.replace(/day/g, "year")); </script> </body> </html>
RunĀ