Codewars Century depuis l'année

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