Issue
This Content is from Stack Overflow. Question asked by Ethan
how to convert the array of dates [‘2022-09-27’, ‘2022-09-26’, ‘2022-09-29’, ‘2022-09-28’, ‘2022-10-01’, ‘2022-10-02’, ‘2022-10-03’] to new Date (‘2022-09-27’),new Date(‘2022-09-26’)
Solution
You can create new array using map function.
const dates = ['2022-09-27', '2022-09-26', '2022-09-29', '2022-09-28', '2022-10-01', '2022-10-02', '2022-10-03'];
const new_dates = dates.map((date) => {
return new Date(date);
});
console.log(new_dates);
This Question was asked in StackOverflow by Ethan and Answered by DCodeMania It is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.