Answers for "how to get current date in javascript with time"

17

return current date in javascript

let today = new Date().toLocaleDateString()

console.log(today)
Posted by: Guest on March-01-2020
8

javascript current date time

var today = new Date().toLocaleDateString(undefined, {
    day: '2-digit',
    month: '2-digit',
    year: 'numeric',
    hour: '2-digit',
    minute: '2-digit',
    second: '2-digit'
})
Posted by: Guest on April-07-2020
19

current date in javascript

const localDate = new Date();
const months = [
   "January",
   "February",
   "March",
   "April",
   "May",
   "June",
   "July",
   "August",
   "September",
   "October",
   "November",
   "December",
];

const days = [
   "Sunday",
   "Monday ",
   "Tuesday",
   "Wednesday",
   "Thursday",
   "Friday",
   "Saturday",
];
const currentDay = days[localDate.getDay()];

const currentDate = localDate.getDate();

const currentMonth = months[localDate.getMonth()];

const currentYear = localDate.getFullYear();

console.log(`${currentDay}, ${currentDate} ${currentMonth}, ${currentYear}`);
Posted by: Guest on February-10-2021

Code answers related to "how to get current date in javascript with time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language