The entries() of enumerable is an inbuilt method in Ruby returns the items in the enumerable.
ruby
Output:
ruby
Output:
Syntax: enu.entries Parameters: The function does not takes any parameter. Return Value: It returns the items in the enum.Example 1:
# Ruby program for entries method in Enumerable
# Initialize
enu = [7, 9, 10]
# Prints each with object
enu.entries
[7, 9, 10]Example 2:
# Ruby program for entries method in Enumerable
# Initialize
enu = (7..14)
# Prints each with object
enu.entries
[7, 8, 9, 10, 11, 12, 13, 14]