Ruby/Array/Array Length
Материал из Wiki.crossplatform.ru
Версия от 18:01, 13 сентября 2010; ViGOur (Обсуждение | вклад)
Use the array"s built-in length method, which returns the number of elements in the array
array = ["Hello", "there", "AAA", 1, 2, 3] puts array[1] #prints "there" puts array[4] #prints 2 puts array.length #prints 6