Skip to content

Instantly share code, notes, and snippets.

@Crystalh
Created April 20, 2014 22:07
Show Gist options
  • Save Crystalh/11126460 to your computer and use it in GitHub Desktop.
Save Crystalh/11126460 to your computer and use it in GitHub Desktop.
Javascript: Unexpected Date object method output - toISOString()
var localDateStr = new Date('02.04.2014').toLocaleDateString('en-GB'); //4/2/2014
var test = new Date(dateStr).toISOString(); //2014-04-01T23:00:00.000Z
EXPECTED RESULT:
2014-04-02T00:00:00.000Z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment