Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Last active May 10, 2021 14:21
Show Gist options
  • Save RahmatSaeedi/cac65f6244b25d7c1b4563b5ba83d163 to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/cac65f6244b25d7c1b4563b5ba83d163 to your computer and use it in GitHub Desktop.
CodeSignal - Arcade - Intro - 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