Answers for "remove time zone"

0

remove time zone

var d = new Date();
d.setTime(1432851021000);
d.toDateString(); // outputs to "Thu May 28 2015"
d.toGMTString(); //outputs to "Thu, 28 May 2015 22:10:21 GMT"
Posted by: Guest on June-22-2021

Browse Popular Code Answers by Language