Daily Archives: October 3, 2020

Javascript Promises

Create a Javascript Promise A promise in JavaScript is exactly what it sounds like – you use it to make a promise to do something, usually asynchronously. When the task completes, you either fulfill your promise or fail to do so. Promise is a constructor function, so you need to use the new keyword to… Read More »