I have an array of objects that I try to iterate over. When I console log that array I can see that it has objects (8) but on next line when I try to iterate over it it goes only in one iteration. Does any one knows what this might be?
console.log(this.options);
console.log(typeof this.options[Symbol.iterator] === 'function');
for (let option of this.options) {
console.log(option.id);
}