Ruby program to remove all elements from the array

Ruby Example: Write a program to remove all elements from the array.
Submitted by Nidhi, on January 16, 2022

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 »




Comments and Discussions!

Load comments ↻





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