Answers for "momentjs node"

13

moment.js

npm install moment --save  #npm

const moment = require('moment'); //require

moment().format('MMMM Do YYYY, h:mm:ss a'); // February 13th 2021, 1:49:03 am
moment().format('dddd');                    // Saturday
moment().format("MMM Do YY");               // Feb 13th 21
moment().format('YYYY [escaped] YYYY');     // 2021 escaped 2021
moment().format();                         	// 2021-02-13T01:49:29+01:00
moment("20111031", "YYYYMMDD").fromNow(); 	// 9 years ago
moment("20120620", "YYYYMMDD").fromNow(); 	// 9 years ago
moment().startOf('day').fromNow();        	// 2 hours ago
moment().endOf('day').fromNow();          	// in a day
moment().startOf('hour').fromNow();      	// an hour ago
moment().subtract(10, 'days').calendar(); 	// 02/03/2021
moment().subtract(6, 'days').calendar();  	// Last Sunday at 1:50 AM
moment().subtract(3, 'days').calendar();  	// Last Wednesday at 1:50 AM
moment().subtract(1, 'days').calendar();  	// Yesterday at 1:50 AM
moment().calendar();                      	// Today at 1:50 AM
moment().add(1, 'days').calendar();       	// Tomorrow at 1:50 AM
moment().add(3, 'days').calendar();       	// Tuesday at 1:50 AM
moment().add(10, 'days').calendar();     	// 02/23/2021
moment.locale();         					// en
moment().format('LT');   					// 1:50 AM
moment().format('LTS');  					// 1:50:49 AM
moment().format('L');    					// 02/13/2021
moment().format('l');    					// 2/13/2021
moment().format('LL');   					// February 13, 2021
moment().format('ll');   					// Feb 13, 2021
moment().format('LLL');  					// February 13, 2021 1:50 AM
moment().format('lll');  					// Feb 13, 2021 1:50 AM
moment().format('LLLL'); 					// Saturday, February 13, 2021 1:50 AM
moment().format('llll');					// Sat, Feb 13, 2021 1:51 AM
Posted by: Guest on February-13-2021
2

moment add seconds

var travelTime = moment().add(642, 'seconds').format('hh:mm A');// it will add 642 seconds in the current time and will give time in 03:35 PM format

var travelTime = moment().add(11, 'minutes').format('hh:mm A');// it will add 11 mins in the current time and will give time in 03:35 PM format; can use m or minutes 

var travelTime = moment().add(2, 'hours').format('hh:mm A');// it will add 2 hours in the current time and will give time in 03:35 PM format
Posted by: Guest on March-03-2020
8

format a date moment

moment(testDate).format('MM/DD/YYYY');
Posted by: Guest on December-18-2019
-1

momentjs docs

npm install moment
Posted by: Guest on July-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language