ES6 Intro
JavaScript has gone from being a dom centered browser language to becoming the most widely used programming language in 2018. It's not just a browser language anymore. JavaScript can now be used to write desktop and mobile applications, Internet of Things(IoT) applications, and is even used at NASA for programming space suits.
ES6
At this point, all you need to know is that JavaScript, like any other language or program, has updates. There are version numbers of JavaScript, and ES6 is the most current version of JavaScript that we'll be working with. It's also known by its official name, ECMA Script 2015. Over the years, since 1995, JavaScript has seen numerous releases, and the current hope is that there will be a yearly release of JavaScript versions from the consortium of developers in charge of updating the language.
Features of ES6
We won't see every nuance of ES6, but here is a list of the major keywords that we'll see and work with frequently as we build applications:
let
const
class
Promise
arrow function
module
At this phase, we'll look specifically at let
and const
. In the future, we'll look more closely at other ES6 features listed above. Let's start by looking at let
.
Last updated