Returns the absolute value for a number.
PHP
echo abs(-4.2); // => 4.2;
Ruby
puts -4.2.abs; # => 4.2;