1<2 //true; 直接进行比较。
1 < '2' // true
console.log(2<'a'); //false
console.log('11'<'2');//true
console.log('a'>'b');//false