Saturday, 6 August 2022

Different ways to display hello world using JS

 index.html

 <html>
    <body>
        <p id="p1"></p>
        <script>
            //diffrent ways to display hello world using js
            console.log("hello world");
            document.write("hello all");
            document.getElementById('p1').textContent="hello world";
            document.getElementById('p1').innerHTML="hello world";
        </script>
    </body>
    </html>

No comments:

Post a Comment

Regular Expressions In JS

 index.html file <! DOCTYPE html > < html lang = "en" > < body > < script > let re ; re = /hello/ i ;  ...