Skip to content

Instantly share code, notes, and snippets.

@webinsation
Created January 26, 2015 20:32
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 webinsation/6a7a0df92422fc534d75 to your computer and use it in GitHub Desktop.
Save webinsation/6a7a0df92422fc534d75 to your computer and use it in GitHub Desktop.
jEwJZx
function min(value1, value2) {
if (value1 < value2) {
return value1;
} else {
return value2;
}
}
console.log(min(0,10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment