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 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
网友评论