Skip to content

Instantly share code, notes, and snippets.

View TheMarini's full-sized avatar
🍰
The cake is a lie

Bruno Marini TheMarini

🍰
The cake is a lie
View GitHub Profile
@TheMarini
TheMarini / wait.js
Created July 2, 2018 21:33 — forked from ericelliott/wait.js
Wait -- an ES6 promise example
const wait = time => new Promise((resolve) => setTimeout(resolve, time));
wait(3000).then(() => console.log('Hello!')); // 'Hello!'