Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Created August 1, 2018 22:52
Show Gist options
  • Save OlivierJM/b7fb15284a8aebb4374f53ccc1a03290 to your computer and use it in GitHub Desktop.
Save OlivierJM/b7fb15284a8aebb4374f53ccc1a03290 to your computer and use it in GitHub Desktop.
function calculateAge(bornYear, currentYear){
console.log(currentYear - bornYear);
}
calculateAge(2000, 2018); // 18
calculateAge() // NAN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment