The source code to filter array elements using the select() method is given below. The given program is compiled and executed successfully.
# Ruby program to filter array elements
# using select () method
arr = [10,20,30,20,50,30];
result = arr.select { |item| item <= 30 };
print "Selected Array elements: \n",result,"\n";
Output:
Selected Array elements:
[10, 20, 30, 20, 30]
Explanation:
In the above program, we created an array arr with some elements. Then we used the select() method. The select() method is used to filter elements based on relational expression and print the result.
Program/Source Code:
The source code to filter array elements using the select() method is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created an array arr with some elements. Then we used the select() method. The select() method is used to filter elements based on relational expression and print the result.
need an explanation for this answer? contact us directly to get an explanation for this answer