javascript:(

/* prompt_return_alert.js */

function()

{

    function askName()

    {

        let name = prompt("Enter Name");

        return name;

    }


    alert("Hi " + askName());


}());


/*

We Type our Code in a Script Editor

and then Paste our Code in our

Web Browser Console using F12

*/


/*

Select All of the Code and

press Ctrl + C to Copy it.

Open Web Browser Console with F12


Paste the Code in the

Browser Console

using Ctrl + V to Paste.

Press the Enter Button.


A Message Box will appear

that says Hi and the

person's name that was entered.

*/


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