Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to format a date as YYYY-MM-DD hh:mm:ss in JavaScript

2 Answers

0 votes
const d = new Date();

dateformat = [d.getFullYear(),
   			  d.getMonth()+1,
              d.getDate()].join('-')+' '+
             [d.getHours(),
              d.getMinutes(),
              d.getSeconds()].join(':');

console.log(dateformat);

  
  
  
  
/*
run:
  
"2022-4-12 9:2:32"
  
*/

 



answered Apr 12, 2022 by avibootz
0 votes
function padzero(n) {
	return n.toString().padStart(2, '0');
}

function formatDate(date) {
    return (
      [
        date.getFullYear(),
        padzero(date.getMonth() + 1),
        padzero(date.getDate()),
      ].join('-') + ' ' +
      [
        padzero(date.getHours()),
        padzero(date.getMinutes()),
        padzero(date.getSeconds()),
      ].join(':')
    );
}

console.log(formatDate(new Date('Apr 05, 2023 09:05:18')));

  
  
  
  
/*
run:
  
"2023-04-05 09:05:18"
  
*/

 



answered Apr 12, 2022 by avibootz
edited Apr 12, 2022 by avibootz

Related questions

1 answer 148 views
1 answer 140 views
1 answer 147 views
1 answer 152 views
1 answer 134 views
1 answer 133 views
1 answer 201 views
...