I am struggling to parse a date format that appears as follows: 2017-02-18T09:00:00+06:00
.
Currently, I am attempting to use the following format for parsing:
d3.utcParse("%Y-%m-%dT%H:%M:%S+%Z");
, however, it is returning null
.
Do you have any suggestions or solutions? Your help would be greatly appreciated!