Skip to content

Instantly share code, notes, and snippets.

@yvan-sraka
Created October 26, 2016 13:45
Show Gist options
  • Save yvan-sraka/ab76509ca59a170ed3ef18597387f59d to your computer and use it in GitHub Desktop.
Save yvan-sraka/ab76509ca59a170ed3ef18597387f59d to your computer and use it in GitHub Desktop.
// JS
function max(tab) {
var result = 0;
for (var i = 0; i < tab.length; i++) {
if (tab[i] > result) {
result = tab[i];
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment