JavaScript

Understanding the JavaScript Modulo Operator

When I was first learning to code, I remember finding the Modulo operator (%) extremely confusing. 😬

If you don't understand what it's doing, the values it produces seem completely random:

js

In this blog post, we're going to learn how this operator works by refining our mental model for division. We'll also cover a practical, every-day use case for this curious fella.

Link to this heading
Rethinking division

Suppose we have the following bit of arithmetic:

js

Division can often feel pretty abstract or theoretical, but there's a practical way to think about it: we want to divide a number into equally-sized groups.

Drag the slider to see how this operation can be visualized:

12 ÷ 4 evaluates to 3, because each group holds exactly 3 items. Essentially, we're figuring out how many items will be held inside each group.

In the example widget above, our dividend (the number to be divided) is 12. 12 is a remarkably clean number when it comes to division; it can be split neatly in lots of different ways.

Suppose we had the following equation instead:

js

This equation evaluates to 2.75. Each group has 2 complete items, and then ¾ths of another item.

This works if we're dividing up pizzas or cakes… but what if the items are indestructible? What if we can't break each item up into smaller fractions?

In that case, we'd be able to fit 2 items into each group, and we'd be left with 3 additional items:

This is known as the remainder. It's what the modulo operator produces.

In cases where the number can be equally divided into groups (eg. 12 ÷ 4), there is nothing left over:

js

In situations where the dividend (the number to be divided) can't be split equally into groups, the modulo operator lets us know how much is left over:

js

Link to this heading
A real-world use case

So, I'm not a mathematician, I'm a web developer. All of this math stuff is interesting, but let's talk about how the modulo operator can come in handy on the web.

Specifically, there's one sort of problem that I seem to run into a lot, where the modulo operator offers the perfect solution: circular arrays.

For example, suppose we have an array of 3 colors. Each second, we want to switch to the next color in the list. When we reach the end of the list, we want to jump back to the first item:

This is a surprisingly tricky problem. Suppose we have a variable called timeElapsed that starts at 0 and increments by 1 every second; we have to somehow map this ever-increasing value to an array with only 3 items.

Essentially, we need to write a function that produces the following results:

js

Let's look at how the modulo operator can help us solve this problem:

js

Miraculously, this does exactly what we need! This method will always return one of the 3 colors, as long as timeElapsed is an integer. And it'll cycle through the 3 colors as timeElapsed increases.

COLORS.length is equal to 3, since there are 3 colors in our array. And so, as timeElapsed increments from 0 to 8, this function winds up performing the following sequence of calculations:

js

We can then use this colorIndex to look up the color from the COLORS array. It's guaranteed to always cycle within the range of available indexes for that array.

To understand why this works, it's worth remembering our new model for division: we're trying to divide timeElapsed into 3 equally-sized groups, without any fractional or decimal values. The remainder will always be either 0, 1, or 2. It will never be 3+, because if there was 3 left, we could fit 1 more in each group!

Essentially, it's as if we had the ability to create a “circular” array. No matter how large our underlying timeElapsed value grows, we can have it cycle indefinitely through the colors in the COLORS array.

In my opinion, this trick alone makes the modulo operator worth learning! I've used this circular-array trick dozens of times over the years, and it's just one of several practical use cases for this handy operator.

Link to this heading
A sneaky surprise

So, I have a confession to make… This blog post wasn't originally meant for this blog. 😮

For the past two years, I've been working on the ultimate educational resource for React. It's called The Joy of React.

In that course, one of the projects is to build an interactive MDX-based blog, just like my real blog! And in that project, we build this very blog post, interactive widgets and all!

You'll learn how to build performant full-stack web applications with Next.js, using all the latest-and-greatest features (the App Router, React Server Components, etc). You'll create the complex layout animations in this post, using Framer Motion. And, most importantly, you'll build a rock-solid intuition for React, so that you can build your own projects from scratch.

The Joy of React is distributed exclusively through my own custom course platform. It's not like other online courses, where you sit and watch me code. My platform encourages experimentation and play. You'll learn by doing.

We start at the very beginning, and move through the gnarliest parts of working with React. You'll learn the “happy practices” that I've settled on after more than 8 years of professional React experience. You'll learn about advanced full-stack React techniques, like Suspense and Streaming Server Side Rendering. All 100% up-to-date.

Visit the “Joy of React” homepage

You can learn more about the course, and discover the joy of building with React:

A front-end web development newsletter that sparks joy

My goal with this blog is to create helpful content for front-end web devs, and my newsletter is no different! I'll let you know when I publish new content, and I'll even share exclusive newsletter-only content now and then.

No spam, unsubscribe at any time.



If you're a human, please ignore this field.

Last Updated:
September 19th, 2023