“Encontre o ano JavaScript” Respostas de código

JavaScript Obtenha o ano atual

var currentYear= new Date().getFullYear(); 
Grepper

Encontre o ano JavaScript

// Return today's date and time
var currentTime = new Date()

// returns the month (from 0 to 11)
var month = currentTime.getMonth() + 1

// returns the day of the month (from 1 to 31)
var day = currentTime.getDate()

// returns the year (four digits)
var year = currentTime.getFullYear()

// write output MM/dd/yyyy
document.write(month + "/" + day + "/" + year)
Quaint Quoll

JavaScript Obtenha o ano atual

const Year = new Date().getFullYear(); 
console.log(Year)
Undefined

Encontre o ano JavaScript


const year = prompt("enter year");
debugger;
if(year%4==0){
    if(year%100==0){
        if(year%400==0){
            console.log(year + " is  leap year")

        }
 
    else{
         console.log(year + "  is not a leap year");
    }

}else {
    console.log(year +"   is a leap year");
}
}else {
    console.log("the year  "+ year + "is not a leap year");
}
Dead Dolphin

Respostas semelhantes a “Encontre o ano JavaScript”

Perguntas semelhantes a “Encontre o ano JavaScript”

Mais respostas relacionadas para “Encontre o ano JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código