Convert Utc Time To Local Time Moment

[Solved] Convert Utc Time To Local Time Moment | Whatever - Code Explorer | yomemimo.com
Question : convert utc time to local time moment

Answered by : mubashar-mayo

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");

Source : | Last Update : Wed, 30 Dec 20

Answers related to convert utc time to local time moment

Code Explorer Popular Question For Whatever