जावास्क्रिप्ट में एक स्ट्रिंग की आवृत्ति को बदलने के लिए, प्रतिस्थापित करें () विधि का उपयोग करें -
<html> <body> <script> var str1 = 'John loves studying. He loves Football too!'; var str2 = str1.replace(/loves/g, "likes"); document.write(str2); </script> </body> </html>