JSFiddle - React, Tailwind, and code Playground

by brigand

JavaScript

const wait = ms => new Promise(resolve => setTimeout(resolve, ms));

let test = wait(10000);
test.then(console.log);