I learned this probably fifty lessons ago, BUT going through the blog I see I hadn’t noted it yet, and it’s just different enough from Python that I ought to at least make a note of it. It also addresses some of my thoughts from my first long-form Javascript post on the range function.
for (var i = 1; i <= 20; i++) { console.log(i) }
That’s all! A bite-sized one today : )