Open In App

Ruby | Range end() function

Improve
Improve
Like Article
Like
Save
Share
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 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

Last Updated : 18 Dec, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads