Skip to content

Instantly share code, notes, and snippets.

@schesnowitz
Created February 18, 2023 09:16
Show Gist options
  • Save schesnowitz/6ead052e9290580cf8e72356c136ce3f to your computer and use it in GitHub Desktop.
Save schesnowitz/6ead052e9290580cf8e72356c136ce3f to your computer and use it in GitHub Desktop.
min max
const minMax = (someArray) => {
const min = Math.min(...someArray);
const max = Math.max(...someArray);
return {
min,
max
}
};
console.log(minMax([1, 2, 3, 4, 5, 6]) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment