Skip to content

What is a magic number in programming?

In some tutorials, books, or videos, you might have seen the term magic number. What is that?

In some tutorials, books, or videos, you might have seen the term magic number.

What is that?

When is a number magic?

Unfortunately magicians have nothing to do with magic numbers.

Simply put, we say that a number is magic when it has no meaning associated.

It might be an undocumented number passed to function. Or a number being declared in your code, maybe added by a team member, that you donโ€™t really know what it means.

What happens if you change it? No one knows.

Itโ€™s up to experimentation to find out.

Those numbers are really annoying. You should avoid creating magic numbers in your code.

Declare a constant, with a meaningful name, and use that instead of a magic number.

For example:

const int PIN_ID = 1;

doSomething(PIN_ID);

is much better, and self-documenting, compared to:

doSomething(1);

THE VALLEY OF CODE

THE WEB DEVELOPER's MANUAL

You might be interested in those things I do:

  • Learn to code in THE VALLEY OF CODE, your your web development manual
  • Find a ton of Web Development projects to learn modern tech stacks in practice in THE VALLEY OF CODE PRO
  • I wrote 16 books for beginner software developers, DOWNLOAD THEM NOW
  • Every year I organize a hands-on cohort course coding BOOTCAMP to teach you how to build a complex, modern Web Application in practice (next edition February-March-April-May 2024)
  • Learn how to start a solopreneur business on the Internet with SOLO LAB (next edition in 2024)
  • Find me on X

Related posts that talk about :