PHPnews.io

Overview for 'wesbos'

Uses

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…


Beginner JavaScript

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…


Flying a DJI Tello Drone with React and Node.js

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…



JavaScript Arrow Functions Introduction

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…


Is var Dead? What should I use?

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…