How to display date and time in JavaScript

2 Answers

0 votes
const date = new Date(2022, 0, 23, 11, 42, 31);

const sdate = date.toDateString();

const stime = date.toLocaleTimeString();

console.log('Date: ' + sdate);

console.log('Time: ' + stime);
   
   
    
    
/*
run:

"Date: Sun Jan 23 2022"
"Time: 11:42:31"
   
*/

 



answered Jan 23, 2022 by avibootz
0 votes
const date = new Date(2022, 0, 23, 11, 42, 31);

console.log(date.toString());
   
   
    
    
/*
run:

"Sun Jan 23 2022 11:42:31 GMT+0200 (Israel Standard Time)"
   
*/

 



answered Jan 23, 2022 by avibootz

Related questions

1 answer 157 views
1 answer 139 views
2 answers 257 views
257 views asked Jan 23, 2022 by avibootz
2 answers 270 views
1 answer 152 views
...