Answers for "javascript display current date and time"

1

current date in javascript

var today = new Date();
    var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
    console.log(date)
// output 2021-7-9
Posted by: Guest on July-09-2021
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
0

current date in javascript

var today = new Date();
var dd = today.getDate();

var mm = today.getMonth()+1; 
var yyyy = today.getFullYear();

dd = dd < 10 ? '0'+ dd : dd;
mm = mm < 10 ?  '0'+ mm : mm;

today = mm+'-'+dd+'-'+yyyy;
console.log(today);
Posted by: Guest on August-26-2021

Code answers related to "javascript display current date and time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language