Answers for "check if array ruby"

6

ruby array has element

>> ['Cat', 'Dog', 'Bird'].include? 'Dog'
=> true
Posted by: Guest on April-08-2020
0

how to check if data is an array or not ruby

.kind_of?(Array)
Posted by: Guest on April-29-2021

Code answers related to "check if array ruby"

Browse Popular Code Answers by Language