Answers for "TIme half a year from now node"

6

moment js add day

var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Posted by: Guest on May-15-2020
3

javascript get time ago with moment

const dateTimeAgo = moment("2020-04-04 11:45:26.123").fromNow();
console.log(dateTimeAgo); //> 6 minutes ago
Posted by: Guest on April-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language