EdCrux / Enumerables-Ruby-methods

In this repository I want to show the main methods found in the module Enumerables in Ruby
1 stars 0 forks source link

CodeReview-Bulldogs-14-February #1

Open EdCrux opened 4 years ago

simondebbarma commented 4 years ago

Here's how it is right now -->

if is_a? Array
      .....
else
      .....
end

Change your else into a conditional, so that you don't pass items that are simply not an Array.

if is_a? Array
      .....
elsif is_a? Hash
      .....
end