Centurio desde el año JavaScript
function centuryFromYear(year) {
return Math.ceil(year/100)
}
Arrogant Anteater
function centuryFromYear(year) {
return Math.ceil(year/100)
}