codebar / tutorials

🗒 codebar's tutorials
http://tutorials.codebar.io/
258 stars 243 forks source link

Replace var with let in javascript tutorials #443

Open andyjp94 opened 5 years ago

andyjp94 commented 5 years ago

I was wondering if there was appetite for changing the tutorials to use let instead of var? It behaves more like other programming languages people may be coming from and is now supported by all major browsers as per https://caniuse.com/#search=let with 90% full support in browsers and 94.5% including partial support.

Let me know if this would be appreciated and if so I'm happy to update the docs and raise the PR

brunogirin commented 5 years ago

We want to do a more in-depth refresh of the JavaScript tutorials and changing var to let would be a start, thanks.

carlwood commented 5 years ago

I'd be up for collaborating with someone on a separate 'ES6 Basics' course where we could include that sort of thing as well as arrow functions, template strings, spread operator, destructuring, etc. At least with a new course - or extra lesson - we can show the effects of changing your code from var to let and const, for example.