Control Flow and Iteration

PHOTO EMBED

Thu Apr 28 2022 20:35:34 GMT+0000 (Coordinated Universal Time)

Saved by @Jiahua #javascript

//Iterate through the array and multiply a number by 10 if it is greater than or equal to 5.
const timesTenIfOverFive = [23, 9, 11, 2, 10, 6];
// ADD CODE HERE
for(let i = 0; i < timesTenIfOverFive.length; i++){
  if(timesTenIfOverFive[i] >= 5){
    timesTenIfOverFive[i] *= 10;
  } 
  
}

// Uncomment the line below to check your work!
console.log(timesTenIfOverFive); // -> should print [230, 90, 110, 2, 100, 60]
content_copyCOPY