Skip to content

Latest commit

 

History

History

typeof

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

输出类型名称

原始类型的名称

基于 typeof

console.log(typeof 1) // number
console.log(typeof '1') // string

内置对象

基于 Object.prototype.toString

const toString = Object.prototype.toString
console.log(toString.call([])) // [object Array]
console.log(toString.call({})) // [object Object]

自定义对象

基于 constructor.name

function Foo() {}
console.log((new Foo).constructor.name) // "Foo"