js类型

复制代码
document.writeln(typeof "abc"); //string
document.writeln(typeof 123);   //number
document.writeln(typeof true);  //boolean
document.writeln(typeof eval);  //function
document.writeln(typeof []);    //object
document.writeln(typeof null);  //object
document.writeln(typeof {});    //object
原文地址:https://www.cnblogs.com/lincoln-lin/p/3277704.html