how can I convert this italian date
Agosto 6, 2020
to this one
August 6, 2020
with javascript?
If I do
var date = new Date('August 6, 2020'); //output Thu Aug 06 2020 00:00:00 GMT+0200
but if I try in italian
var date = new Date('Agosto 6, 2020'); //output is invalid date
many thanks