Skip to content

Instantly share code, notes, and snippets.

@KimSarabia
Created November 5, 2015 20:17
Show Gist options
  • Save KimSarabia/bd407fb6399a5fdb1ffe to your computer and use it in GitHub Desktop.
Save KimSarabia/bd407fb6399a5fdb1ffe to your computer and use it in GitHub Desktop.
Eloquent JavaScript Chapter 3 Q.1
function min(x,y) {
if (x > y)
return y;
else (x < y)
return x;
};
console.log(min(0, 10));
// → 0
console.log(min(0, -10));
// → -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment