Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

leap year condition in javascript

//Easiest Leap-year condition
function isLeapyear(year){
    if(year%4==0  ||  year%400==0   &&   year%1000!=0){
        return true;
    }
    else{
        return false;
    }
}


const my_year = isLeapyear(1999);  //Tip: 2000 is a leap year.

console.log('My year is', my_year );
Comment

javascript leap year

function isLeapYear(year){
	if(year % 400 === 0 && year % 4 === 0){
      return true
    } else {
      return false
    }
}
Comment

Leap year function javascript

function isLeapYear(year) {
    if (year % 4 == 0) {
        console.log("leap year")
    } else {
        console.log("Not a leap year")
    }
}
var myYear = 2020;
isLeapYear(myYear)
// Output:leap year
Comment

javascript Program to check if a given year is leap year

<script>
 
// Javascript program to check
// for a leap year
 
    function checkYear( year) {
        // If a year is multiple of 400,
        // then it is a leap year
        if (year % 400 == 0)
            return true;
 
        // Else If a year is multiple of 100,
        // then it is not a leap year
        if (year % 100 == 0)
            return false;
 
        // Else If a year is multiple of 4,
        // then it is a leap year
        if (year % 4 == 0)
            return true;
        return false;
    }
 
    // Driver method
      
        let year = 2000;
        document.write(checkYear(2000) ? "Leap Year" : "Not a Leap Year");
 
 
// This code is contributed by shikhasingrajput
 
</script>
Comment

PREVIOUS NEXT
Code Example
Javascript :: running scripts is disabled on this system react js 
Javascript :: form to json 
Javascript :: random alphabet javascript 
Javascript :: javascript get data attribute of selected option 
Javascript :: js alert yes no 
Javascript :: jQuery delete all spans in a div 
Javascript :: find object length in javascript 
Javascript :: datatable row color 
Javascript :: query injection nestjs 
Javascript :: colors.xml" already exists! 
Javascript :: url.parse deprecated 
Javascript :: react index.js BrowserRouter 
Javascript :: jquery this value 
Javascript :: how to add keyframe in emotion stled 
Javascript :: tagname js 
Javascript :: how to make graphql request in axios 
Javascript :: get moment date without time 
Javascript :: how to create an anchor tag in javascript 
Javascript :: check if mobile view javascript 
Javascript :: parentelement javascript 
Javascript :: sort alphabetically javascript 
Javascript :: jQuery.easing[this.easing] is not a function 
Javascript :: typing refs react 
Javascript :: js get difference in days 
Javascript :: how to align placeholder in react native 
Javascript :: round a number to fixed decimals 
Javascript :: fetch post data 
Javascript :: ReferenceError: window is not defined 
Javascript :: find array javascript 
Javascript :: shadowoffset react native constructor 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =