Use javascript to ask for an input on your browser Then, key in your name. How do u think you're able to retrieve the data you just keyed in? Try it. Discuss among yourselves code example
Example: how to ask input in javascript
Copyvar name = window.prompt("Enter your name: ");
alert("Your name is " + name);