javascript:(

/* prompt_if_toLowerCase_equal_to_alert.js */

function()

{

    function askName()

    {

        let name = prompt("Enter Name").toLowerCase();


        if (name == "john")

        {

            alert("Hi " + name);

        }

    }


    askName();


}());


/* John or JOHN or jOhN will activate */

/* Jo hn or JOH N or J O H N will NOT activate */


/* 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 */