// Assignment - Loop Olympics - Bronze Medal // Write a for loop that will push the numbers 0 through 9 to an array. // Write a for loop that prints to the console only even numbers 0 through 100. // Write a for loop that will push every other fruit to an array. // const fruit = ["banana", "orange", "apple", "kiwi", "pear", "peach"]
1
2
3
4
5
// Assignment - Loop Olympics - Bronze Medal
// Write a for loop that will push the numbers 0 through 9 to an array.
// Write a for loop that prints to the console only even numbers 0 through 100.
// Write a for loop that will push every other fruit to an array.
// const fruit = ["banana", "orange", "apple", "kiwi", "pear", "peach"]