Content deleted Content added
m →Python: PEP-8 |
→ECMAScript: const Tags: Mobile edit Mobile web edit |
||
Line 542:
// generator without an upper bound limit
for (
console.log(n);
if (n > 10000) break;
Line 557:
// picks up from where you stopped
for (
console.log(n);
if (n > 10000) break;
|