Open In App
Related Articles

Ruby | Numeric abs() function

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Report issue
Report

The abs is an inbuilt method in Ruby returns the absolute value of a number.  

Syntax: num.abs

Parameters: The function needs the number whose absolute value is to be returned. 

Return Value: It returns the absolute value of a numbers.

Example 1:  

Ruby




# Ruby program for abs() method in Numeric
 
# Initialize two numbers
num = -19
 
# Prints absolute value of num
puts  num.abs()


Output

19

Example 2

Ruby




# Ruby program for abs() method in Numeric
 
# Initialize two numbers
num = 100
 
# Prints absolute value of num
puts  num.abs()


Output

100

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Jan, 2021
Like Article
Save Article
Previous
Next
Similar Reads