Skip to content

Instantly share code, notes, and snippets.

@marsrvr
Created March 20, 2019 23:16
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 marsrvr/af2cb949aa4890e3db842456ceeeddf1 to your computer and use it in GitHub Desktop.
Save marsrvr/af2cb949aa4890e3db842456ceeeddf1 to your computer and use it in GitHub Desktop.
IvanOnTech Academy Smart Contract Programming Eloquent JavaScript CH3 exercises min() function
function min(a, b) {
if (a > b)
return b;
else
return a;
} // min()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment