Question #52

Author: admin
tags: JavaScript  
console.log(typeof typeof null);
What will the console output be?
'object'
'null'
'undefined'
'string'
Nothing, there will be the SyntaxError error.
The typeof operator takes an expression as an operand.
typeof null returns string 'object'.
typeof 'object' returns string 'string'.
Rate the difficulty of the question:
easyhard