The include?() of enumerable is an inbuilt method in Ruby returns a boolean value. It returns true if the enumerable contains the given elements, or else it returns false.
Syntax: enu.include?(el)
Parameters: The function takes an element which is to be checked for.
Return Value: It returns a boolean value.
Example #1:
enu = [ 2 , 8 , 9 , 10 , 23 ]
puts enu.include?( 8 )
puts enu.include?( 7 )
|
Output:
true
false
Example #2:
enu = ( 20 .. 30 )
puts enu.include?( 10 )
puts enu.include?( 29 )
|
Output:
false
true
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!