Skip to content

Instantly share code, notes, and snippets.

@TheDcoder
Created September 16, 2019 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheDcoder/cb2f4c0c23791413caec68cd70086de6 to your computer and use it in GitHub Desktop.
Save TheDcoder/cb2f4c0c23791413caec68cd70086de6 to your computer and use it in GitHub Desktop.
Math.min in absolute terms
function absMin(...values) {
return values.find(value => {
value = Math.abs(value);
return values.every(x => Math.abs(x) >= value);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment