| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/shehanprabhashitha/javascripting/master/javascripting/for-loop.js | [Back] [Original] |
let total = 0;
const limit = 10;
for (let i = 0; i < limit; i++) {
total += i;
}
console.log(total)
| Web Proxy Viewer | New URL | Original Page |