What is the output of calling typeof on String, new String('hi') and String('hi') as follows?
console.log( typeof String + ' '
+ typeof new String('hi') + ' '
+ typeof String('hi') );
Select the correct output from given choices: