I have a simple use case but I cannot figure out how to convert from GMT/UTC to local time in moment.js.
Example:
var gmtDateTime = moment.utc(\"20
Try moment().local().
var gmtDateTime = moment.utc("2015-10-24 20:00", "YYYY-MM-DD HH") var local = gmtDateTime.local().format('YYYY-MMM-DD h:mm A');