Hello, I need some help.
I have a string="01/04/2012" and need to convert to date (dd-mm-yyyy) in pure javascript.
Here's what I did:
var vencimento = localStorage.getItem('dados2'); //Busca a variável que contém a string = 01/04/2012
var vencimento2 = new Date(vencimento); // = Wed Jan 04 2012 00:00:00 GMT-0200 (Horário brasileiro de verão)
var vencimento3 = ???
How could I turn that date into DD-MM-YYYY? I just found examples in jQuery: /