mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 09:24:46 +08:00
5 lines
95 B
JavaScript
5 lines
95 B
JavaScript
let total = 0;
|
|
for (let i = 0; i < 10; i++) {
|
|
total += i;
|
|
}
|
|
console.log("Total: " + total); |