Skip to content

March 7th, 2018

Chandler McWilliams edited this page Mar 10, 2018 · 2 revisions

March 7th, 2018

What is ES2015?

Let + Const

Classes

Arrow Functions

Template Strings

Destructuring

Default + Rest + Spread

Promises

(Fetch)

function timeout(duration = 0) {
    return new Promise((resolve, reject) => {
        setTimeout(resolve, duration);
    })
}

var p = timeout(1000).then(() => {
    return timeout(2000);
}).then(() => {
    throw new Error("hmm");
}).catch(err => {
    return Promise.all([timeout(100), timeout(200)]);
})

What are NPM and Yarn?

What is Webpack?

Why is it so complicated?

Neutrino.js

Clone this wiki locally