Overview for 'wesbos'
Written by Wes Bos
/ Original link
on Dec. 12, 2019
Everyday I get a few emails asking about the specifics of some piece of software or hardware I use. I change up things fairly often, so this page will serve as a living document and a place to point curious developers to when I get asked. If there is something missing leave a comment below or ask…
Written by Wes Bos
/ Original link
on Dec. 4, 2019
It’s here! I’m incredible proud to announce Beginner JavaScript — a fun, exercise heavy approach to learning Modern JavaScript from scratch. This is a course I’ve worked on for over a year, and I’ve been dreaming of how to make the best introduction to JavaScript for years now. A rock solid underst…
Written by Wes Bos
/ Original link
on Dec. 7, 2018
Hey Folks! Kind of a fun one here today. I wrote some JavaScript to fly a DJI Drone. IBM is giving away 2,000 DJI Tello drones as part of a challenge and I made this video to help them promote it. This is the fun kind of stuff that originally got me excited about programming so I’d encourage you to…
Written by Wes Bos
/ Original link
on Sep. 29, 2017
Hey Folks! You crashed my server. Good job. Please hang on for a bit while I fix this. Please don’t email or tweet me – I know about it!
Written by Wes Bos
/ Original link
on Sep. 8, 2016
ES6 has introduced arrow functions which have three main benefits. First, they have a concise syntax. Secondly, they have implicit returns, which allows us to write these nifty one-liners. Thirdly, they don’t rebind the value of this when you use a arrow function inside of another function, which…
Written by Wes Bos
/ Original link
on Sep. 7, 2016
We’ve learned about let and const — what they do, and how they’re scoped. We also know when they can be reassigned and when they cannot, but there’s a question: What Should I actually use? That’s a bit of a hot topic in the community right now, because some people prefer to still use var. Some peop…