Answers for "For year = 1905, the output should be centuryFromYear(year) = 20;"

0

For year = 1905, the output should be centuryFromYear(year) = 20;

1
2
3
function centuryFromYear(year) {
    return Math.floor(year/100) + ((year%100) ? 1 : 0)
}
Posted by: Guest on October-12-2020

Browse Popular Code Answers by Language