Mega Code Archive

 
Categories / Ruby / Array
 

Get the max value in an array

[3, 5, 11, 16].max                                # => 16 ["three", "five", "eleven", "sixteen"].max        # => "three" ["three", "five", "eleven", "sixteen"].max { |x,y| x.size <=> y.size } # => "sixteen"