''.constructor===String //true
true.constructor===Boolean //true
1.constructor===Number //Uncaught SyntaxError: Unexpected token ILLEGAL
因为,这里的“.
”会被解释成小数点,而不是点操作符从而造成语法错误。
使用以下两种方式就可以了,
(1).constructor
1..constructor
''.constructor===String //true
true.constructor===Boolean //true
1.constructor===Number //Uncaught SyntaxError: Unexpected token ILLEGAL
因为,这里的“.
”会被解释成小数点,而不是点操作符从而造成语法错误。
使用以下两种方式就可以了,
(1).constructor
1..constructor