Skip to content

Instantly share code, notes, and snippets.

@hisamparker
Created April 10, 2021 19:48
Show Gist options
  • Select an option

  • Save hisamparker/258063fe56bcc3bf6c7e8898fbd81a41 to your computer and use it in GitHub Desktop.

Select an option

Save hisamparker/258063fe56bcc3bf6c7e8898fbd81a41 to your computer and use it in GitHub Desktop.
array : return max in an array of nums
let arr = [3, 5, 1];
alert( Math.max(...arr) ); // 5 (spread turns array into a list of arguments)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment