📝
프론트엔드 스쿨 교안(1기)
/
📝
(코테준비) 자료구조 및 알고리즘
/
☝
JS 100제 - 1권
/
🔥
문제11
/
✔️
답안
✔️
답안
let s = 0; for (let i=1; i<=100; i++){ s += i; } console.log(s);