Open In App

Ruby | Array to_ary() function

Last Updated : 06 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
Array#to_ary() : to_ary() is a Array class method which returns self array representation.
Syntax: Array.to_ary() Parameter: Array Return: self array representation.
Example #1 : Ruby
# Ruby code for to_ary() method

# declaring array
a = [18, 22, 33, nil, 5, 6]

# declaring array
b = [1, 4, 1, 1, 88, 9]

# declaring array
c = [18, 22, 50, 6]

# to_ary method example
puts "to_ary() method form : #{a.to_ary()}\n\n"

puts "to_ary() method form : #{b.to_ary()}\n\n"

puts "to_ary() method form : #{c.to_ary()}\n\n"
Output :
to_ary() method form : [18, 22, 33, nil, 5, 6]

to_ary() method form : [1, 4, 1, 1, 88, 9]

to_ary() method form : [18, 22, 50, 6]

Example #2 : Ruby
# Ruby code for to_ary() method

# declaring array
a = ["abc", "nil", "dog"]

# declaring array
c = ["cat", nil]

# declaring array
b = ["cow", nil, "dog"]


# to_ary method example
puts "to_ary() method form : #{a.to_ary()}\n\n"

puts "to_ary() method form : #{b.to_ary()}\n\n"

puts "to_ary() method form : #{c.to_ary()}\n\n"
Output :
to_ary() method form : ["abc", "nil", "dog"]

to_ary() method form : ["cow", nil, "dog"]

to_ary() method form : ["cat", nil]

Next Article

Similar Reads