Codewars Century do ano
function century(year) {
return ((year + 99) / 100) | 0;
}
Michael Futral
function century(year) {
return ((year + 99) / 100) | 0;
}