How to Clamp Numbers in JavaScript

How to Clamp Numbers in JavaScript

Ferenc Almasi β€’ Last updated 2024 February 01 β€’ Read time 2 min read
  • twitter
  • facebook
JavaScript

Use the following function in JavaScript to easily clamp numbers between a min and a max value:

Copied to clipboard! Playground
const min = 0
const max = 100

// Clamp number between two values with the following line:
const clamp = (num, min, max) => Math.min(Math.max(num, min), max)

clamp(-50, min, max) // Will return: 0
clamp(50, min, max)  // Will return: 50
clamp(500, min, max) // Will return: 100
clamp.js
Copy the clamp function to your codebase to use it

Explanation

Let's break this code down to fully understand what is going on. We start with a number, and min and max values. Let's say the number we want to cap is 50, our min is 0, and our max is 100. We pass our number to Math.max, along with our min value:

Copied to clipboard!
Math.max(50, 0) // -> 50

This will return the higher number from the two, which means we get 50 back. Next, we pass this to Math.min along with our max value:

Copied to clipboard!
Math.min(50, 100) // -> 50

This time, this will return the lowest number from the passed arguments. Hence:

  • If value < min, it will return the minimum allowed number
  • If value > max, it will return the maximum allowed number
  • If value > min and value < max, it will return the passed number

Live Example

You can test the functionality in the following interactive widget with your desired values to check if the function suits your needs.

🚫 Refresh console
Looking to improve your skills? Check out our interactive course to master JavaScript from start to finish.
Master JavaScriptinfo Remove ads

Official Support

Using the same function, we can make it global by extending the Number object in the following way:

Copied to clipboard! Playground
Number.prototype.clamp = (num, min, max) => Math.min(Math.max(num, min), max)

(-50).clamp(-50, min, max)
(50).clamp(50, min, max)
(500).clamp(500, min, max)
clamp.js
Extending the Number object with the clamp function

However, keep in mind this is considered to be a bad practice and should be avoided. Only use it if you need compatibility with newer features.

You should not extend native prototype unless it's for compatibility reasons.
As stated in the Conclusion section on MDN (Inheritance & prototype chain)

Instead, if you use a modern framework, you can simply include it at the root of your project or store it in a global namespaced object (eg.: app.utils.clamp). There is also a proposal for a built-in Math.clamp function, however, it's still in draft. Until it gets widely adopted, you need to polyfill it.


Resources

  • twitter
  • facebook
JavaScript
Did you find this page helpful?
πŸ“š More Webtips
Frontend Course Dashboard
Master the Art of Frontend
  • check Access 100+ interactive lessons
  • check Unlimited access to hundreds of tutorials
  • check Prepare for technical interviews
Become a Pro

Courses

Recommended

This site uses cookies We use cookies to understand visitors and create a better experience for you. By clicking on "Accept", you accept its use. To find out more, please see our privacy policy.