Checks if value is less than or equal to the provided length.
const teenagerAge = maxValue(17);teenagerAge(26); // Error: maxValueteenagerAge(15); // passes Copy
const teenagerAge = maxValue(17);teenagerAge(26); // Error: maxValueteenagerAge(15); // passes
Value used in the comparison.
Checks if value is less than or equal to the provided length.
Example