Find out the previous year date from current date in javascript

后端 未结 12 1362
执念已碎
执念已碎 2021-02-02 07:43

I need to find out the previous year date from current date and then set as minDate in jQuery UIdatepicker in javascript

My date formaqt is dd-mm-yy

<
12条回答
  •  后悔当初
    2021-02-02 08:30

    you can define a new date or an existing date as d variable

    var d = new Date();
    

    then you can put date, month and year to the new date string using ${variableName}, Also you must add 1 to d.getMonth() and substract 1 from d.getFullYear()

    var previousYearDate = `${d.getDate()}-${d.getMonth() + 1}-${d.getFullYear() - 1}`;
    

提交回复
热议问题