What is the result of the following expression?
const fruits = ["apple", "banana", "orange"];
for (let fruit of fruits) {
console.log(fruit);
}
What is the result of the following expression?
const fruits = ["apple", "banana", "orange"];
for (let fruit of fruits) {
console.log(fruit);
}