javascript的typeof使用
Posted hongyi1159
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript的typeof使用相关的知识,希望对你有一定的参考价值。
原网页 http://www.web-jia.com/view.php?a=23?
这个typeof我也用过好多次了,经常会忘记这次特意记录一下
Undefined "undefined"
Null "object" (see below)
Boolean "boolean"
Number "number"
String "string"
Symbol (new in ECMAScript 2015) "symbol"
Host object (provided by the JS environment) Implementation-dependent
Function object (implements [[Call]] in ECMA-262 terms) "function"
Any other object "object"
其中有一条要记录一下
typeof null === ‘object‘;
以上是关于javascript的typeof使用的主要内容,如果未能解决你的问题,请参考以下文章
使用 typeof 检查时调用 window.external 上的无参数方法
代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?