Q. What will be the output of typeof function(){}?
β
Correct Answer: (A)
function
Explanation: typeof returns 'function' for function declarations.