Open In App

Ruby | Array sort() function

Last Updated : 06 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
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
# 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
# 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"]


Next Article

Similar Reads