Beginner’s Guide to Javascript
This is the first video by Guil
Hernandez
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Totam vel corporis laboriosam rerum similique reiciendis expedita veritatis.
REMEMBER the parentheses after the function name.
This didn't work at first. The error? forgot the quotes in the brackets.
function greet(greeting) { let response = prompt('what yor name?'); alert(greeting + ", " + response + "!!"); } greet('hi there');