Ruby program to get the first N items from the array using the take() method

Ruby Example: Write a program to get the first N items from the array using the take() method.
Submitted by Nidhi, on January 12, 2022

Problem Solution:

In this program, we will create an array of integers with few elements. Then we will get the first N items from the array using the take() method.

Program/Source Code:

The source code to get the first N items from the array using the take() method is given below. The given program is compiled and executed successfully.

# Ruby program to get the first N items from 
# the array using take() method

arr = [100,101,102,103,104];
items = arr.take(2);

print "Array: ",arr,"\n";
print "First 2 items: ",items,"\n";

Output:

Array: [100, 101, 102, 103, 104]
First 2 items: [100, 101]

Explanation:

In the above program, we created an array of integers with few elements. Then we got the first 2 items from the array using the take() method and assigned the items into the items variable. After that, we printed the result.

Ruby Arrays Programs »




Comments and Discussions!

Load comments ↻





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