Let's say I have multiple arrays of isodate objects like so:
const apple = [{"readDetail":2021-04-17 14:23:26.978Z},{"readDetail":2021-02-18 14:23:26.978Z},
{"readDetail":2019-04-18 14:23:26.978Z}]
Expected Output = [ "April 2021","February 2021", "April 2019",]
Is there a way to convert the array of objects to the expected output?
I've searched for solutions but couldn't find one. If anyone has an idea, please let me know.