Quick actions

cmd+k|ctrl+k

Navigation

Languages

Promises & async

Snippet info

Language

JavaScript

Visibility

public

Author

paulkotov

Created

2018-01-24T08:37:26Z

Updated

2019-03-16T12:30:52Z

const first = new Promise((res, rej) => {
    res(123);
    rej(new Error('Error'));
});

first.then(value => {
    console.log(value);
}).catch(error => {
    console.log(error);
});
INFO