Skip to content

Instantly share code, notes, and snippets.

@leonmaia
Last active October 4, 2016 08:04
Show Gist options
  • Save leonmaia/9b81b0a87f5bcba58901e97cf5bd5734 to your computer and use it in GitHub Desktop.
Save leonmaia/9b81b0a87f5bcba58901e97cf5bd5734 to your computer and use it in GitHub Desktop.
var minimum = 21;
var checkAge = function(age) {
return age >= minimum;
};
///////////////////////
var checkAge = function(age) {
var minimum = 21;
return age >= minimum;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment