Answers for "combine date time and timezone moment"

5

moment js convert to local timezone

// MOMENT.JS IS NO LONGER MAINTAINED - SWITCH TO DAY.JS, LUXON, ETC.

const time = moment.tz("2021-04-14T02:08:10.370Z")
const localtz = moment.tz.guess()
const date = time.clone().tz(localtz)
const formatDate = moment(date).format('MMMM Do YYYY, h:mm:ss A z')
Posted by: Guest on June-02-2021
0

moment format a date into different format

moment(yourDate).format('MM/DD/YYYY');
Posted by: Guest on June-18-2021

Code answers related to "combine date time and timezone moment"

Browse Popular Code Answers by Language