Hello Someone

https://codepen.io/joe_bacal/pen/gxrZmq

html
<button onclick="helloSomeone()">Click Me!</button>
javascript
function helloSomeone(){
  var someone = prompt('What is your name?');
  alert('Hello ' + someone + '!' );
}

Hello Someone Challenge

https://codepen.io/joe_bacal/pen/QMEwzy

Can you add some more lines to ask the person other questions?

javascript
function helloSomeone(){
  var someone = prompt('What is your name?');
  alert('Hello ' + someone + '!' );
  var food = prompt('What is your favorite food?');
  alert('Mmm, ' + someone + ', ' + food + ' is tasty.');
}

results matching ""

    No results matching ""