Ruby program to get array elements after N elements

Ruby Example: Write a program to get array elements after N elements.
Submitted by Nidhi, on January 14, 2022

Problem Solution:

In this program, we will create an array of integers then we will get the array elements after N elements using the drop() method.

Program/Source Code:

The source code to get array elements after N element is given below. The given program is compiled and executed successfully.

# Ruby program to get array elements 
# after N elements

arr = [10,20,30,20,50,30];

result = arr.drop(2);

print "Result: \n",result,"\n";

Output:

Result: 
[30, 20, 50, 30]

Explanation:

In the above program, we created an array arr with some elements. Then we used the drop() method. The drop method returns the elements after n elements of the array. After that, we printed the result.

Ruby Arrays Programs »





Comments and Discussions!

Load comments ↻






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