How to display date and time in TypeScript

2 Answers

0 votes
const date = new Date(2022, 0, 23, 11, 48, 33);
 
const sdate = date.toDateString();
 
const stime = date.toLocaleTimeString();
 
console.log('Date: ' + sdate);
 
console.log('Time: ' + stime);
    
    
     
     
/*
run:
 
"Date: Sun Jan 23 2022" 
"Time: 11:48:33" 
    
*/

 



answered Jan 23, 2022 by avibootz
0 votes
const date = new Date(2022, 0, 23, 11, 49, 35);
 
console.log(date.toString());
    
    
     
     
/*
run:
 
"Sun Jan 23 2022 11:49:35 GMT+0200 (Israel Standard Time)" 
    
*/

 



answered Jan 23, 2022 by avibootz

Related questions

3 answers 185 views
1 answer 143 views
1 answer 168 views
2 answers 170 views
...