Answers for "subtract hours moment js from date string"

0

moment js get date 1 month

var currentDate = moment('2015-10-30');
var futureMonth = moment(currentDate).add(1, 'M');
var futureMonthEnd = moment(futureMonth).endOf('month');

if(currentDate.date() != futureMonth.date() && futureMonth.isSame(futureMonthEnd.format('YYYY-MM-DD'))) {
    futureMonth = futureMonth.add(1, 'd');
}

console.log(currentDate);
console.log(futureMonth);
Posted by: Guest on April-21-2020
0

how to substract date object javascript

Example
<html>
   <head>
      <title>JavaScript setDate Method</title>
   </head>
   <body>
      <script>
         var dt = new Date("December 30, 2017 11:20:25");
         dt.setDate( dt.getDate() - 10 );
         document.write( dt );
      </script>
   </body>
</html>
Output
Wed Dec 20 2017 11:20:25 GMT+0530 (India Standard Time)
Posted by: Guest on January-05-2020

Code answers related to "subtract hours moment js from date string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language