I have a format of \"Jan. 27, 2015 at 8:17 AM\" that I need to display using moment.js. I\'m using the format
moment.format(\'MMM. D, YYYY at h:mm A z\'); <
Escape it with square braces
moment().format('MMM. D, YYYY [at] h:mm A z'); // produces: "Jan. 30, 2015 at 2:46 PM "