Answers for "string to date in typescript"

1

string to date in typescript

let dateString = '1968-11-16T00:00:00' 
let newDate = new Date(dateString);
Posted by: Guest on April-23-2021
0

string to date in typescript

{{dateString |  date:'MM/dd/yyyy'}}
Posted by: Guest on April-23-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language