I am encountering an issue in my TypeScript project where the date selected by users is not being parsed correctly.
For example: (JSON)
"IssueDate":"Wed Jan 18 2017 00:00:00 GMT+0200 (Jordan Standard Time)"
However, when I try to parse the object using Newtonsoft in my controller, the resulting date property is always showing one day less than expected.
IssueDate: {1/17/2017 10:00:00 PM}
I'm puzzled as to why this discrepancy is happening. Could it be a configuration issue with Newtonsoft that's causing this mismatch?