Checks if value is greater than or equal to the provided length.
const adultAge = minValue(18);adultAge(15); // Error: minValueadultAge(26); // passes Copy
const adultAge = minValue(18);adultAge(15); // Error: minValueadultAge(26); // passes
Value used in the comparison.
Checks if value is greater than or equal to the provided length.
Example