Skip to main content

clamp

Giới hạn giá trị nằm trong đoạn min tới max

Ví dụ

import { clamp } from '@xobuilder/utils';
const el = document.querySelector('button');

let count = 0;
el.addEventListener('click', () => {
count++;
const newCount = clamp(count, 0, 20);
console.log(newCount); // Giá trị newCount luôn nằm trong đoạn 0 đến 20
})