×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

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


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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