Home »
Ruby Tutorial »
Ruby Programs
Ruby program to remove all elements from the array
Last Updated : December 15, 2025
Problem Solution
In this program, we will create an array of integer elements. Then we will remove all elements from the array using the clear() method.
Program/Source Code
The source code to remove all elements from the array is given below. The given program is compiled and executed successfully.
# Ruby program to remove all elements
# from the array
arr = [10,21,30,41,50];
puts "Array elements: ",arr;
arr.clear();
puts "Array elements: ",arr;
Output
Array elements:
10
21
30
41
50
Array elements:
Explanation
In the above program, we created an array arr with some elements. Then we removed all elements from the array using the clear() method and print the updated array.
Ruby Arrays Programs »
Advertisement
Advertisement