4
I have the following implementation:
minhaDataRetornada = "Dez 20, 2016";
minhaDataTratada = Date.parse(minhaDataRetornada);
console.log(minhaDataTratada);
Running the above code, my return is :Nan.
If I change the word Dez
for Dec
, works perfectly.
I’d like to know how to fix it, man webService
returns Dez
.