Markdown Card
Page Name:
Logo URL:
Logo URL Label:
Paste Markdown:
@postmaker.dev
1. What's the output?
function sayHi() {
console.log(name);
console.log(age);
var name = 'Jane';
let age = 21;
}
sayHi();
- A:
Jane
andundefined
- B:
Jane
andReferenceError
- C:
ReferenceError
and21
- D:
undefined
andReferenceError