Created
August 1, 2018 23:26
-
-
Save OlivierJM/4fdc358c32683153220001e20209cb0d 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
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