The take() of enumerable is an inbuilt method in Ruby returns the first N elements from the enumerable. If it does not have N elements, then it returns the entire enum.
Syntax: enu.take(n)
Parameters: The function accepts N which specifies the number of elements to be returned.
Return Value: It returns the first N elements.
Example #1:
enu = [ 10 , 13 , 12 , 11 ]
enu.take( 3 )
|
Output:
[10, 13, 12]
Example #2:
enu = ( 1 .. 19 )
enu.take( 4 )
|
Output:
[1, 2, 3, 4]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
05 Dec, 2019
Like Article
Save Article