How to display date and time in Node.js

2 Answers

0 votes
const date = new Date(2022, 0, 23, 12, 15, 31);
 
const sdate = date.toDateString();
 
const stime = date.toLocaleTimeString();
 
console.log('Date: ' + sdate);
 
console.log('Time: ' + stime);
    
    
     
     
/*
run:
 
Date: Sun Jan 23 2022
Time: 12:15:31 PM
    
*/

 



answered Jan 23, 2022 by avibootz
0 votes
const date = new Date(2022, 0, 23, 12, 16, 35);
 
console.log(date.toString());
    
    
     
     
/*
run:
 
Sun Jan 23 2022 12:16:35 GMT+0000 (Coordinated Universal Time)
    
*/
    

 



answered Jan 23, 2022 by avibootz

Related questions

3 answers 185 views
185 views asked May 26, 2022 by avibootz
1 answer 138 views
1 answer 154 views
1 answer 179 views
1 answer 194 views
1 answer 213 views
...