javascript:(

/* how_to_make_comments.js */

function()

{

    function askName()

    {

        let name = prompt("Enter Name");


        /*

        Here is another comment.

        Comments can be on multiple lines using this way

        */


        return name;

    }


    alert("Hi " + askName());


}());


/* Any code in between will be commented out, but the code before and after will NOT be effected. */


/* Dedicated to God the Father */

/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024 */

/* https://github.com/ChristopherTopalian */

/* https://github.com/ChristopherAndrewTopalian */

/* https://sites.google.com/view/CollegeOfScripting */