“Obtener fecha y hora actuales en JavaScript” Código de respuesta

Devolver Fecha actual en JavaScript

let today = new Date().toLocaleDateString()

console.log(today)
Poor Polecat

El tiempo de hoy en JavaScript

var today = new Date();
var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
var dateTime = date+' '+time;
Cute Crab

Cómo obtener la fecha actual en JS

let today = new Date();
let month = today.getMonth() + 1;
month = month < 10 ? "0" + month : month;
let days = today.getDate() < 10 ? "0" + today.getDate() : today.getDate();

today = today.getFullYear() + "-" + month + "-" + days;

console.log(today);
Indonesia People

JavaScript Hora de fecha actual

var today = new Date().toLocaleDateString(undefined, {
    day: '2-digit',
    month: '2-digit',
    year: 'numeric',
    hour: '2-digit',
    minute: '2-digit',
    second: '2-digit'
})
Disturbed Dog

JavaScript obtenga fecha actual

var d= new Date();
d.getFullYear();//Get the year as a four digit number (yyyy)
d.getMonth();//Get the month as a number (0-11)
d.getDate();//Get the day as a number (1-31)
d.getHours();//Get the hour (0-23)
d.getMinutes();//Get the minute (0-59)
d.getSeconds();//Get the second (0-59)
d.getMilliseconds();//Get the millisecond (0-999)
d.getTime();//Get the time (milliseconds since January 1, 1970)
Grepper

Obtener fecha y hora actuales en JavaScript

var currentdate = new Date(); 
var datetime = "Last Sync: " + currentdate.getDate() + "/"
                + (currentdate.getMonth()+1)  + "/" 
                + currentdate.getFullYear() + " @ "  
                + currentdate.getHours() + ":"  
                + currentdate.getMinutes() + ":" 
                + currentdate.getSeconds();
Xenophobic Xenomorph

Respuestas similares a “Obtener fecha y hora actuales en JavaScript”

Preguntas similares a “Obtener fecha y hora actuales en JavaScript”

Más respuestas relacionadas con “Obtener fecha y hora actuales en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código