“encontrar el año javascript” Código de respuesta

JavaScript obtenga un año actual

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

encontrar el año 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 obtenga un año actual

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

encontrar el año 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

Respuestas similares a “encontrar el año javascript”

Preguntas similares a “encontrar el año javascript”

Más respuestas relacionadas con “encontrar el año javascript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código