字符串之间的比较根据字典序。
不同类型的值使用 == 比较时,会先隐式转换为 Number 类型。
==
Number
null 和 undefined:
null
undefined
> < >= <=
=== 比较不会做隐式类型转换,而是直接比较,不同类型的值肯定不相等。
===