Last active
October 4, 2016 08:04
-
-
Save leonmaia/9b81b0a87f5bcba58901e97cf5bd5734 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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