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

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] = '2022-04-01T05:30:17.120Z'.split('T');

console.log(theDate); 

  
  
  
  
/*
run:
  
"2022-04-01"
  
*/

 



answered Apr 4, 2022 by avibootz

Related questions

2 answers 145 views
2 answers 159 views
2 answers 167 views
1 answer 149 views
1 answer 204 views
...