Ruby program to remove the last item from the array

Ruby Example: Write a program to remove the last item from the array.
Submitted by Nidhi, on January 10, 2022

Problem Solution:

In this program, we will create an array of integers with few elements. Then we will remove the last element from the array using the pop() method.

Program/Source Code:

The source code to remove the last item from the array is given below. The given program is compiled and executed successfully.

# Ruby program to remove last item 
# from array

arr = [100,101,102,103,104];
item = arr.pop();

print "Array: ",arr,"\n";
print "Removed item: ",item,"\n";

Output:

Array: [100, 101, 102, 103]
Removed item: 104

Explanation:

In the above program, we created an array of integers with few elements. Then we removed the last item from the array using the pop() method and assigned the removed item into the item variable. After that, we printed the removed item and updated the array.

Ruby Arrays Programs »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.