Home »
Ruby »
Ruby Programs
Ruby program to get the last given number of items from the array
Ruby Example: Write a program to last given number of items from the array.
Submitted by Nidhi, on January 12, 2022
Problem Solution:
In this program, we will create an array of integers with few elements. Then we will get the last given number of items from the array using the last() method.
Program/Source Code:
The source code to get the last given number of items from the array is given below. The given program is compiled and executed successfully.
# Ruby program to get the last given number
# of items from the array
arr = [100,101,102,103,104];
item = arr.last(2);
print "Array: ",arr,"\n";
print "Last 2 items: ",item,"\n";
Output:
Array: [100, 101, 102, 103, 104]
Last 2 items: [103, 104]
Explanation:
In the above program, we created an array of integers with few elements. Then we got the last 2 items from the array using the last() method and assigned the items into the item variable. After that, we printed the result.
Ruby Arrays Programs »