showing results for - "century from year javascript"
Javon
17 Jun 2016
1function centuryFromYear(year) {
2    return Math.ceil(year/100)
3}