Skip to content

Instantly share code, notes, and snippets.

@parkerproject
Forked from brentk/Moment.js Cheat Sheet
Created September 23, 2020 22:49
Show Gist options
  • Save parkerproject/de7e9b5ac9abbcae9bfde237efdb4d7b to your computer and use it in GitHub Desktop.
Save parkerproject/de7e9b5ac9abbcae9bfde237efdb4d7b to your computer and use it in GitHub Desktop.
1/2/2017
moment().format("M/D/YYYY");
01/02/2017
moment().format("MM/DD/YYYY");
14:57:22
moment().format("HH:mm:ss");
02:57 PM
moment().format("hh:mm A");
2:57pm
moment().format("h:mma");
February 2nd, 2017
moment().format("MMMM Do, YYYY");
Tuesday, 02-Feb-17
moment().format("dddd, DD-MMM-YY");
Full docs: https://momentjs.com/docs/#/displaying/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment