Question: Review the code snippet below. Then indicate in the following section what you think will be logged out. var name = Mary; var sayHello =
Review the code snippet below. Then indicate in the following section what you think will be logged out.
var name = "Mary";
var sayHello = function(name) { console.log("Hello ", name); name = "Steven"; }
sayHello();
What is logged out? *
Hello
Hello Steven
Hello Mary
Hello undefined
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
