moment format date yyyy-mm-dd code example
Example 1: moment format date dd/mm/yyyy
moment(new Date()).format("DD/MM/YYYY")
Example 2: moment format
moment().format('MMMM Do YYYY, h:mm:ss a');
moment().format('dddd');
moment().format("MMM Do YY");
moment().format('YYYY [escaped] YYYY');
moment().format();
Example 3: javascript format date yyyy-mm-dd
let today = new Date()
today.toISOString().split('T')[0]
Example 4: moment yyyy-MM-ddTHH:mm
moment().format("YYYY-MM-DD[T]HH:mm:ss");
Example 5: moment now format
var date = moment().format('MM/DD/YYYY');