• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / KHY_Project1

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • KHY_Project1
  • ..
  • utils
  • is-leap-year.js
  • 허진호's avatar
    ui 수정 · 86aabfa8
    86aabfa8
    허진호 authored 2020-06-17 16:25:00 +0900
is-leap-year.js 106 Bytes
Raw Blame History Permalink
1 2 3
export function isLeapYear(year) {
    return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}