Deprecation warning: moment().add(period

moment().add(period number) is deprecated

Deprecation warning: moment().add(period, number) is deprecated. Please use moment().add(number, period).

Previously it was using like this,

var today = new Date();
$('#datePicker').datetimepicker({
    format: 'DD/MM/YYYY',
    minDate: moment(today),
    maxDate: moment().add('years', 1)
});

But now it is,

var today = new Date();
$('#datePicker').datetimepicker({
    format: 'DD/MM/YYYY',
    minDate: moment(today),
    maxDate: moment().add(1, 'years')
});

The operations like add, subtract or set change the original moment object.

The example looks like,

var days = moment().add(-1.5, 'days') == moment().add(-2, 'days') == moment().subtract(1.5, 'days') == moment().subtract(2, 'days');


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

moment().add(period number) is deprecated moment().add(period number) is deprecated Reviewed by Anil Singh on 5:20 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^