Open In App

Ruby | Array sort() function

Improve
Improve
Like Article
Like
Save
Share
Report

Array#sort() : sort() is a Array class method which returns a new array created by sorting self

Syntax: Array.sort()

Parameter: Array

Return: a new array created by sorting self

Example #1 :




# Ruby code for sort() method
  
# declaring array
a = ["abc", "nil", "dog"]
  
# declaring array
c = ["cat", "efg", "geeks"]
  
# declaring array
b = ["cow", "coal", "dog"]
  
arr = [a, b, c]
  
# sort method example
puts "sort() method form : #{arr.sort()}\n\n"


Output :

sort() method form : [["abc", "nil", "dog"], ["cat", "efg", "geeks"], ["cow", "coal", "dog"]]

Example #2 :




# Ruby code for sort() method
  
# declaring array
a = ["abc", "nil", "dog"]
  
# declaring array
c = ["cat", "efg", "geeks"]
  
# declaring array
b = ["cow", "coal", "dog"]
  
  
# sort method example
puts "sort() method form : #{a.sort()}\n\n"
  
puts "sort() method form : #{b.sort()}\n\n"
  
puts "sort() method form : #{c.sort()}\n\n"


Output :

sort() method form : ["abc", "dog", "nil"]

sort() method form : ["coal", "cow", "dog"]

sort() method form : ["cat", "efg", "geeks"]



Last Updated : 06 Dec, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads