Q. What will be the result?
Code:typeof function(){};
β
Correct Answer: (A)
function
Explanation: Functions are of type 'function' in JavaScript.
typeof function(){};