Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Created August 1, 2018 23:26
Show Gist options
  • Save OlivierJM/4fdc358c32683153220001e20209cb0d to your computer and use it in GitHub Desktop.
Save OlivierJM/4fdc358c32683153220001e20209cb0d to your computer and use it in GitHub Desktop.
function calculateExactAge(bornYear=1995, currentYear=2018){
console.log(currentYear - bornYear);
}
calculateExactAge(); // 23
calculateExactAge(2010, 2020); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment