JS ISO Date Split

var date = new Date("2013-03-10T02:00:00Z");
date.toISOString().substring(0, 10);
Defiant Dragonfly