关于javascript隐式类型转换的几个例子

依次在控制台打出以下代码,并Enter:

typeof NaN //JS高级程序设计第三版29页
Math.max()
Math.min()
[] + []
[] + {}
{} + []
{} + {}
true+true+true === 3 
true+true+true == 3
[] == 0
{} == 0

相信很大一部分同志Enter完以后很懵逼,心里万马奔腾。

你可能感兴趣的:(关于javascript隐式类型转换的几个例子)