Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created February 17, 2020 03:56
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 bitfishxyz/9f2f22c12e8491adc8e4875a7e58b641 to your computer and use it in GitHub Desktop.
Save bitfishxyz/9f2f22c12e8491adc8e4875a7e58b641 to your computer and use it in GitHub Desktop.
function max(arr){
let max = arr[0];
for (let ele of arr) {
if(ele > max) {
max = ele;
}
}
return max;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment