type of 运算符可能的结果

type of Symbol() //“symbol”
type of Number() //“number”
type of String() //“string”
type of Function() //“function”
type of Object() //“object”
type of Boolean() //“boolean”
type of null //“object”
type of undefined //“undefined”

你可能感兴趣的:(JS)