Open In App

Ruby | Range end() function

Last Updated : 18 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The end() is an inbuilt method in Ruby returns the last element of the given range.
Syntax: range1.end() Parameters: The function accepts no parameter Return Value: It returns the last element of the given range.
Example 1: Ruby
# Ruby program for end() method in Range 

# Initialize range 
range1 = (0..10)

# Prints the last element
puts range1.end() 
Output:
10
Example 2: Ruby
# Ruby program for end() method in Range 

# Initialize range 
range1 = (10..20)

# Prints the last element
puts range1.end() 
Output:
20

Next Article

Similar Reads