- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
JavaScript program to check if a given year is leap year
To check if a given year is leap year or not using JavaScript, the code is as follows −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 18px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Check Leap year or not</h1> Enter the year<input class="year" type="text" /> <button class="Btn">CHECK</button> <div class="result"></div> <h3>Click on the above button check if the year above is leap year or not</h3> <script> let resultEle = document.querySelector(".result"); let yearEle = document.querySelector(".year"); document.querySelector(".Btn").addEventListener("click", () => { if (yearEle.value % 4 == 0) { resultEle.innerHTML = yearEle.value + " is a leap year "; } else resultEle.innerHTML = yearEle.value + " is not a leap year"; }); </script> </body> </html>
Output
On entering year and clicking on ‘CHECK’ button −
- Related Articles
- Program to check if a given year is leap year in C
- Golang Program to Check Whether a Given Year is a Leap Year
- Check if a given year is leap year in PL/SQL
- PHP program to check if a year is leap year or not
- C++ Program to Check Leap Year
- Java Program to Check Leap Year
- How to detect if a given year is a Leap year in Oracle?
- Java program to find if the given number is a leap year?
- How to Check Leap Year using Python?
- Python Pandas - Check whether the year is a leap year from the Period object
- How to check whether a year or a vector of years is leap year or not in R?
- How to find leap year or not in android using year API class?
- How to find a leap year using C language?
- Finding nth day of the year in leap and non-leap years in JavaScript
- What do you mean by a leap year?

Advertisements