• Đăng ký
  • Đăng nhập

js forEach

📅 — 👀 49 — 👦
const numbers = [1, 2, 3, 4, 5];
numbers.forEach(function(number) {
    console.log(number);
});