Content
What is the result of the function call shown below? let firstName ‘John’; const greeting firstName console.log("Hi, my name is firstName!"); greeting("John Jr."); Hi my name is John! is logged to the console. Hi my name is undefined! is logged to the console. Correct Answer Hi my name is John Jr.! is logged to the console. You Answered uncaught syntax error is logged to the console. Incorrect! Hi my name is John Jr.! is logged to the console as a result of the function call on line 33.