×

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 get the first given number of items from the array

Last Updated : December 15, 2025

Problem Solution

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

Program/Source Code

The source code to get the first given number of items from the array is given below. The given program is compiled and executed successfully.

# Ruby program to get the first given number 
# of items from the array

arr = [100,101,102,103,104];
item = arr.first(2);

print "Array: ",arr,"\n";
print "First 2 items: ",item,"\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 first() method and assigned the items into the item variable. After that, we printed the result.

Ruby Arrays Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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