Member-only story

Promises in JavaScript explained whimsically

Kevin Kim
5 min readMay 21, 2018

--

Chances are that if you have ever used fetch() to get some sort of a JSON hash back from an external API, such as fetching some important headlines from a respectable news site, (see screen cap below) you have been interacting with a Promise object this whole time, and you are 70% of the way there in understanding what Promises are in JavaScript.

Fetching some headlines, formatting it into a JSON hash, then logging it to the console

The Basics

In essence, a Promise in JavaScript is a lot like a promise made in real life. As promises in real life are either kept or broken, JavaScript Promises get either resolved or rejected.

To explore this further, let’s take a look at how a small child promising his parents to clean his room looks like in JavaScript.

JavaScript’s way of expressing a Promise to clean the room

In JavaScript, a Promise takes in two callbacks: resolve and reject. Reading through the above code, it is evident that our small child fulfilled his promise to clean his room. Therefore, our Promise object here— once called upon— will resolve to return 'Clean' as its response. Suppose our child failed to keep his end of the bargain — then isClean would be set to false. Then our Promise here will get rejected and return not Clean as its response.

We can now execute our promiseToCleanTheRoom function by writing out the following.

Once the promiseToCleanTheRoom gets executed, our then function will trigger only if the Promise gets resolved.

Likewise, our catch function will only trigger only if the Promise gets rejected.

Our result here is either the return value inside of resolve() or reject()depending on whether or not our promiseToCleanTheRoom function got resolved or rejected — therefore, we will either log to the console the following:

'the room is clean' // isClean = true;

--

--

Responses (11)

Write a response