Open jirengu opened 7 years ago
依次返回的是
//boolean
//string
//string
str
是String
的一个实例,所以str instanceof String
返回的是 true
true
是一个布尔值,所以typeof true
返回的是 "boolean"
typeof
用于判断数据类型,以字符串的形式返回数据类型.
"boolean"
是个字符串,所以 typeof "boolean"
返回的是"string"
typeof "string"
返回的是 "string"
boolean
string
string
str is String, so str instanceof String
is true(Boolean). Then typeof Boolean
is Boolean, return 'boolean'.
typeof's result is String, so typeof typeof ... all is string.
以下代码输出什么 ?why