Open In App

Ruby | Range end() function

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 program for end() method in Range 
  
# Initialize range 
range1 = (0..10)
  
# Prints the last element
puts range1.end() 

Output:

10

Example 2:




# Ruby program for end() method in Range 
  
# Initialize range 
range1 = (10..20)
  
# Prints the last element
puts range1.end() 

Output:

20
Article Tags :