What is the output of the following code?
var fruits = ["apple", "banana", "orange"];
for (var fruit of fruits) {
console.log(fruit);
}
What is the output of the following code?
var fruits = ["apple", "banana", "orange"];
for (var fruit of fruits) {
console.log(fruit);
}