'u'] var valores = [1, 2, 3] vocales.length // 5 vocales.concat(valores) // ['a' … 'u', 1, 2, 4] vocales.join(“”) // “aeiou” temp = valores.pop() // temp == 3 valores.push(4) // [1, 2, 3, 4] temp = valores.shift() // temp == 1 valores.unshift(4) // [4, 1, 2, 3] Valores.reverse() // [3, 2, 1]