🎯 สิ่งที่คุณจะได้เรียนรู้
- การใช้คำสั่ง for
- การใช้คำสั่ง while loop
- การใช้คำสั่ง for…of
👶 For
for (let i = 1; i <= 3; i++) { console.log(i);}🔁 While
let i = 1;while (i <= 3) { console.log(i); i++;}📦 For…of
let fruits = ["apple", "banana"];
for (let fruit of fruits) { console.log(fruit);}