Skip to content

Instantly share code, notes, and snippets.

@tekkub
Forked from MajorMokoto/gist:1675482
Created January 25, 2012 08:48
Show Gist options
  • Save tekkub/1675487 to your computer and use it in GitHub Desktop.
Save tekkub/1675487 to your computer and use it in GitHub Desktop.
var legalDrivingAge = 18;
var canIDrive = function (myAge) {
if (myAge >= legalDrivingAge)
return true;}
else{return false;}
canIDrive (18)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment