美文网首页
typeof的结果

typeof的结果

作者: ShoneSingLone | 来源:发表于2020-08-03 23:03 被阅读0次
typeof 0 // 'number'
typeof '0' // 'string'
typeof undefined // 'undefined'
typeof true // 'boolean'
typeof Symbol() // 'symbol'
typeof BigInt(1) //"bigint"
typeof [] // 'object'
typeof {} // 'object'
typeof console.log // 'function'

相关文章

网友评论

      本文标题:typeof的结果

      本文链接:https://www.haomeiwen.com/subject/obfirktx.html