I want to work in same timezone in my web application, I try to use de time zone default function moment.tz.setDefault("Europe/Madrid"); the dates conversions (json format) are bad, substact one day by default
Here is my plunker
http://plnkr.co/edit/xsugHtDLLUfxugCJRwIZ?p=preview
Thanks
var jsonDate = "/Date(118101600000)/"; // DD/MM/YY = 29/09/1973
alert(moment(jsonDate).format("DD/MM/YY")); // conversion ok
moment.tz.setDefault("Europe/Madrid");
alert(moment(jsonDate).tz('Europe/Madrid').format("DD/MM/YY")); // substract one day by default 28/09/1973
alert(moment(jsonDate).format("DD/MM/YY")); // substract one day by default 28/09/1973