I want to convert date string to Date by javascript, use this code:
Date
var date = new Date(\'2013-02-27T17:00:00\'); alert(date);
The correct format for UTC would be 2013-02-27T17:00:00Z (Z is for Zulu Time). Append Z if not present to get correct UTC datetime string.
2013-02-27T17:00:00Z
Z