Question: 1 Given the array: var numbers = [0, 1, 2, 3, 4]; How can we correctly add the number 5 to the end of the array? numbers[5] = 5; numbers.push(5); numbers[0] = 5; numbers.pop(5); Question: 2 You are building a p...
Asked by amaya battle
1 answer