https://zhidao.baidu.com/question/79159257.html
typeof 运算符返回一个用来表示表达式的数据类型的字符串。 可能的字符串有:"number"、"string"、"boolean"、"object"、"function" 和 "undefined"。 如: alert(typeof (123));//typeof(123)返回"number" alert(typeof ("123"));//typeof("123")返回"string"
本文共 298 字,大约阅读时间需要 1 分钟。
https://zhidao.baidu.com/question/79159257.html
typeof 运算符返回一个用来表示表达式的数据类型的字符串。 可能的字符串有:"number"、"string"、"boolean"、"object"、"function" 和 "undefined"。 如: alert(typeof (123));//typeof(123)返回"number" alert(typeof ("123"));//typeof("123")返回"string"
转载于:https://www.cnblogs.com/hym-pcitc/p/6186719.html