Chrome returns Tue Jun 30 2015 18:00:00 GMT-0700 (Pacific Daylight Time)
.
Safari returns invalid date for same function.
If ' ' is replaced by 'T' then it works but i don't know why.
new Date('2015-07-01 01:00:00+00:00')
Does not work on safari
new Date('2015-07-01T01:00:00+00:00')
Works on both browsers
Is there any specific reason?