Skip to content

Instantly share code, notes, and snippets.

@weslley39
Created March 5, 2014 19:05
Show Gist options
  • Save weslley39/9374196 to your computer and use it in GitHub Desktop.
Save weslley39/9374196 to your computer and use it in GitHub Desktop.
Asp Mvc Date to Js Date
var mili = Data.replace('Date', '').replace('/', '').replace('(', '').replace(')', '').replace('/', '');
var dataJavascript = new Date(eval(mili));
var realDate = dataJavascript.toLocaleDateString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment