Question:What is the output of the following code?let x=33.54; let data=x.toString(); console.log(typeof data);
let x=33.54; let data=x.toString(); console.log(typeof data);
A number B object C string D Compile Error
+ AnswerC
+ Report