Skip to content

Instantly share code, notes, and snippets.

@yheihei
Created January 20, 2020 03:42
Show Gist options
  • Save yheihei/4206b2f8a70e10ee37d245596a937d13 to your computer and use it in GitHub Desktop.
Save yheihei/4206b2f8a70e10ee37d245596a937d13 to your computer and use it in GitHub Desktop.
console.log(Math.max(1, 3, 2));
// expected output: 3
const array1 = [1, 3, 2];
console.log(Math.max(...array1));
// expected output: 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment