What's the simplest way of changing a negative number to positive with ruby?
ie. Change "-300" to "300"
Using abs will return the absolute value of a number
abs
-300.abs # 300 300.abs # 300
Put a negative sign in front of it.
>> --300 => 300 >> x = -300 => -300 >> -x => 300
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
7359 times
active