How to get only the date from an ISO date string in TypeScript

2 Answers

0 votes
const date = new Date();
 
const [theDate] = date.toISOString().split('T');
 
console.log(theDate); 
 
   
   
   
   
/*
run:
   
"2022-04-04"
   
*/

 



answered Apr 4, 2022 by avibootz
0 votes
const [theDate] = '2023-01-12T06:31:18.190Z'.split('T');
 
console.log(theDate); 
 
   
   
   
   
/*
run:
   
"2023-01-12" 
   
*/

 



answered Apr 4, 2022 by avibootz

Related questions

2 answers 161 views
2 answers 137 views
2 answers 171 views
1 answer 153 views
1 answer 94 views
2 answers 182 views
...