Skip to content

Instantly share code, notes, and snippets.

@Elergy
Last active February 9, 2019 17:28
Show Gist options
  • Save Elergy/270bb067daad700a050043d7d95653b2 to your computer and use it in GitHub Desktop.
Save Elergy/270bb067daad700a050043d7d95653b2 to your computer and use it in GitHub Desktop.
function main() {
// code before
const limits = { minimum, maximum };
const shouldShowError = isOutsideInterval(value, limits);
// code after
}
function isOutsideInterval(value, limits) {
return value < limits.minmum || value > limits.maximum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment