This is my code:
var feedDataTimestamp = new Date(\"2014-01-14T00:04:40+0000\").getTime(); var parsedDate = new Date(+feedDataTimestamp); alert(parsedDate.ge
You set the timezone in the parsed string as +0000 so you seem to want the hours in UTC, use
+0000
alert(parsedDate.getUTCHours())