Arreglos
Objetivos
- Crear algunos arreglos y hacer cosas con ellos
- Recuperar datos de los arreglos
Paso 1
Type this in irb:frutas = ["kiwi", "fresa", "ciruela"]Type this in irb:cosas = [5, 'casa', 19.5] cosas.lengthType this in irb:arreglo_vacio = [] arreglo_vacio.length
Paso 2
Type this in irb:frutas[0] frutas[1] frutas[2]Type this in irb:frutas.first frutas.last
Paso 3
Type this in irb:['sal'] + ['pimienta']Type this in irb:frutas + ['mango'] frutas
Paso 4
Type this in irb:frutas = ["kiwi", "fresa", "ciruela"] frutas.push('manzana') frutas.pop()
Explicación
length ¿qué tan grande es este arreglo? (cuántos elementos) first obtiene el primer elemento del arreglo (lo mismo que arreglo[0]) last obtiene el último elemento del arreglo (lo mismo que arreglo[-1]) push agrega un nuevo elemento al final del arreglo pop elimina (y regresa) el último elemento del arreglo
Lecturas adicionales
Documentación de Ruby para Arreglos
Siguiente Paso:
Ir a Hashes