For...of використовується для ітерації по значеннях об'єкта, таких як масиви або рядки, тоді як for...in використовується для ітерації по ключах об'єкта.
const arr = ['a', 'b', 'c'];
for (const value of arr) {
console.log(value);
}
for (const index in arr) {
console.log(index);
}