What is the typeof null in JavaScript

The type of null is not "null" as expected. It's "object". Why? Old bug!

typeof null; // logs "object"

Questions

What's the output?

typeof null;

What's the output?

typeof 'null';