So in some case a string integer becomes a float:> "123" + 1124.0> math.abs("123")123.0while in some other cases no conversion is done:> math.max("123", -2.3, 1)attempt to compare string with number