#promises
Read more stories on Hashnode
Articles with this tag
const wait = function (second) { return new Promise(function (resolve) { setTimeout(resolve("WHo??"), second * 1000); }); }; wait(1) ...