This expression:
'33.33' > '100.00'
return true. Why?
If it work like:
+'33.33' > +'100.00'
it must return false because 33.33 < 100;
If like:
'33.33'.length > '100.00'.length
then false, because 5 < 6;
I'm really interested know, how it work in the first case;