Q. What will be the output of: typeof Promise?
β
Correct Answer: (A)
function
Explanation: Promise is a constructor function, so typeof Promise returns 'function'.