“Получение текущей даты и времени в JavaScript” Ответ

Вернуть текущую дату в JavaScript

let today = new Date().toLocaleDateString()

console.log(today)
Poor Polecat

Сегодняшнее время в 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

Как получить текущую дату в 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 текущая дата времени

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 Получите текущую дату

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

Получение текущей даты и времени в JavaScript

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

Ответы похожие на “Получение текущей даты и времени в JavaScript”

Вопросы похожие на “Получение текущей даты и времени в JavaScript”

Больше похожих ответов на “Получение текущей даты и времени в JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования