The source code to get the last item from the array is given below. The given program is compiled and executed successfully.
# Ruby program to get the last item
# from the array
arr = [100,101,102,103,104];
item = arr.last();
print "Array: ",arr,"\n";
print "Last item: ",item,"\n";
Output:
Array: [100, 101, 102, 103, 104]
Last item: 104
Explanation:
In the above program, we created an array of integers with few elements. Then we got the last item from the array using the last() method and assigned the item into the item variable. After that, we printed the result.
Program/Source Code:
The source code to get the last item from the array is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created an array of integers with few elements. Then we got the last item from the array using the last() method and assigned the item into the item variable. After that, we printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer