How to convert array of date strings to array of dates in Node.js

1 Answer

0 votes
const dates_str = ['2022/03/12', '2022/05/11', '2022/01/27', '2022/01/05', '2022/05/24']; 
            
const dates = [];
 
for (let i = 0; i < dates_str.length; i++) {
	 dates.push(new Date(dates_str[i]));
}

for (let i = 0; i < dates.length; i++) {
     console.log(dates[i].toDateString());
}
 
 
 
 
 
/*
run:
 
Sat Mar 12 2022
Wed May 11 2022
Thu Jan 27 2022
Wed Jan 05 2022
Tue May 24 2022
 
*/

 



answered Apr 1, 2022 by avibootz

Related questions

...