Question: Consider the array: const cities = [ ' Tokyo ' , 'New York', 'Mexico City', 'Seoul' ] ; Which of the following blocks of code

Consider the array:
const cities =['Tokyo', 'New York', 'Mexico City', 'Seoul'];
Which of the following blocks of code would create a new array with the order of the names reversed?
Consider the array:
const cities =['Tokyo', 'New York', 'Mexico City', 'Seoul'];
Which of the following blocks of code would create a new array with the order of the names reversed?
const reversedCities =[];
while (cities.length >=0){
reversedCities.push(cities.pop());
}
const reversedCities =[];
while (cities[length]>0){
reversedCities.push(cities.pop());
}
const reversedCities =[];
while (cities.length =0){
reversedCities.push(cities.pop());
}
const reversedCities =[];
while (cities.length >0){
reversedCities.push(cities.pop());
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!