Skip to content

Instantly share code, notes, and snippets.

@ValchanOficial
Created February 20, 2024 00:45
Show Gist options
  • Save ValchanOficial/3a6070676f2be41826bdc690aaee1f53 to your computer and use it in GitHub Desktop.
Save ValchanOficial/3a6070676f2be41826bdc690aaee1f53 to your computer and use it in GitHub Desktop.
[JS] centuryFromYear
function centuryFromYear(year) {
return Math.ceil(year / 100)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment