View all questions & answers for the JavaScript-Developer-I exam
Refer to code below:
Let a =’a’;
Let b;
// b = a;
console.log(b);
What is displayed when the code executes?
ReferenceError: b is not defined
A
Undefined
Null
Submit