Skip to content

Instantly share code, notes, and snippets.

@ThaddeusJiang
Last active October 19, 2022 04:59
Show Gist options
  • Save ThaddeusJiang/59b84bed6b8856200d83b4716534d0c5 to your computer and use it in GitHub Desktop.
Save ThaddeusJiang/59b84bed6b8856200d83b4716534d0c5 to your computer and use it in GitHub Desktop.
isLeapYear in TypeScript
function isLeapYear(year: number) {
return new Date(year, 1, 29).getDate() === 29
}
export default isLeapYear
@daiwa233
Copy link

好活🔥

@agatsumayuki
Copy link

fantastic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment