Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darksh3ll/b05850f34b6a0afc4b0e20de1133f3b4 to your computer and use it in GitHub Desktop.
Save darksh3ll/b05850f34b6a0afc4b0e20de1133f3b4 to your computer and use it in GitHub Desktop.
//Plus grand
const score = [23,78,65,100,89,999,87,1020];
console.log(Math.max(...score));
//Plus petit
console.log(Math.min(...score));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment