\'10:\' < \'1:\' # => true
Can someone explain me why the result in the above example is true? If I just compare \'1:\' and \'2:\' I get the
Because the ASCII code for 0 is 48, which is smaller than the ASCII code for :, which is 58.
0
: