Can I convert iso date to milliseconds? for example I want to convert this iso
2012-02-10T13:19:11+0000
to milliseconds.
Because I
Another possible solution is to compare current date with January 1, 1970, you can get January 1, 1970 by new Date(0);
January 1, 1970
new Date(0)
var date = new Date(); var myDate= date - new Date(0);