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
相關文章
相關標籤/搜索