HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> var str = "ai means Artificial intelligence"; var result = str.replace("ai", function (x) { return x.toUpperCase(); }); document.write(result); </script> </body> </html>
OUTPUT
×

Save as Private