Answers for "utc to timezone moment-timezone"

0

convert utc time to local time moment

const date = moment.utc().format();
console.log(date, "- now in UTC");
const local = moment.utc(date).local().format();
console.log(local, "- UTC now to local");
Posted by: Guest on December-23-2020
5

moment get timezone

var tz = moment.tz.guess();
Posted by: Guest on November-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language