Home | Mailing List | Blog | Tutorial Videos

Console Log Constructors

Consider the following code block. What gets logged?

console.log(
  typeof Object, 
  typeof Array, 
  typeof Number
);

Select one: