Answers for "ISODate in javascript"

1

date().toisostring().slice(0 10) giving wrong result

//Add Z in the end for getting the correct value with local timezone
var a = new Date("June 08, 2018 Z");
var res = a.toISOString().slice(0, 10);
console.log(res);
Posted by: Guest on August-17-2020
1

js toisostring

new Date().toISOString().slice(0, 16).replace('T', ' ')
 // "2020-11-28 00:40"
Posted by: Guest on November-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language