forum

Home / DeveloperSection / Forums / Check if year is leap year in javascript

Check if year is leap year in javascript

Anonymous User256703-May-2013
Hi Everyone!

function leapYear(year){
    var result; 
    year = parseInt(document.getElementById("isYear").value);
    if (years/400){
      result = true
    }
    else if(years/100){
      result = false
    }
    else if(years/4){
      result= true
    }
    else{
      result= false
    }
    return result
 }
This is what I have so far (the entry is on a from thus stored in "isYear"), I basically followed this here, so using what I already have, how can I check if the 

entry is a leap year based on these conditions(note I may have done it wrong when implementing the pseudocode, please correct me if I have) Edit: Note this needs to 

use an integer not a date function

Please help me!
Thanks in advance!

Updated on 03-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By