Created
May 8, 2017 21:36
-
-
Save stahnni/3ae2ade8d4b555a9285d95d03158265b to your computer and use it in GitHub Desktop.
year from century solution
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
/*Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc. | |
Example | |
For year = 1905, the output should be | |
centuryFromYear(year) = 20; | |
For year = 1700, the output should be | |
centuryFromYear(year) = 17. | |
The solution i tried is below | |
*/ | |
function centuryFromYear(year) { | |
return Math.ceil(year/100); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment