Array#to_ary() : to_ary() es un método de la clase Array que devuelve la representación de la propia array.
Sintaxis: Array.to_ary()
Parámetro: Array
Retorno: representación de array propia.
Ejemplo 1 :
# 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"
Producción :
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]
Ejemplo #2:
# 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"
Producción :
to_ary() method form : ["abc", "nil", "dog"] to_ary() method form : ["cow", nil, "dog"] to_ary() method form : ["cat", nil]
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA