判断true==5//false
1.将true转为数字类型为1
2.1==5所以为false
[]==![]//true
1.将[]转为数字类型为0
2,将![]中的[]转为boolean值为true,所以![]为false
3,0转为Boolean值为false所以[]==![]为true