js:代码会说话-数据类型

typeof(1) //"number"

typeof(1.1) //"number"

1/0 // "Infinity"

typeof(1/0) //"number"

0/0 //NaN

原文地址:https://www.cnblogs.com/AlexNull/p/4995001.html