What will be the output of the following code?
var myArray = [1, 2, 3]; console.log(typeof myArray[Symbol.iterator]);
"undefined"
"array"
"object"
"function"