How to convert date to different types of string in JavaScript ES6

1 Answer

0 votes
const date = new Date(Date.now());

console.log(date.toJSON());
console.log(date.toDateString());
console.log(date.toString());
console.log(date.toLocaleDateString());
console.log(date.toLocaleDateString());
console.log(date.toISOString());
console.log(date.toUTCString());



/*
run:
   
2020-03-23T19:34:32.473Z
Mon Mar 23 2020
Mon Mar 23 2020 21:34:32 GMT+0200 (GMT+02:00)
2020-3-23
2020-3-23
2020-03-23T19:34:32.473Z
Mon, 23 Mar 2020 19:34:32 GMT

*/

 



answered Mar 23, 2020 by avibootz
edited Mar 23, 2020 by avibootz
...