Question: javascript What is the message in the alert popup when the function is called below? function greeter(greeting) { return function(person){ alert(greeting + ', + person);
javascript

What is the message in the alert popup when the function is called below? function greeter(greeting) { return function(person){ alert(greeting + ', + person); }; } (greeter('Welcome'))('Riley'); Welcome, undefined Welcome, Riley undefined, Riley Undefined undefined
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
