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