Postmaker.dev

Markdown Card

Page Name:

Logo URL:

Logo URL Label:

Paste Markdown:

Created with Postmaker.dev
@postmaker.dev
1. What's the output?
function sayHi() {
  console.log(name);
  console.log(age);
  var name = 'Jane';
  let age = 21;
}

sayHi();
  • A: Jane and undefined
  • B: Jane and ReferenceError
  • C: ReferenceError and 21
  • D: undefined and ReferenceError