←
^
→
JavaScript
String Operators
Be careful with conversion.
+
and comparisons operators make different conversions.
1 + 2
'1' + '2'
'1' + 2
'11' < '2'
'11' < 2
1 + 2 + ' blind mice'
'blind mice=' + 1 + 3
José M. Vidal
.
24 of 65