Find out the previous year date from current date in javascript

后端 未结 12 1367
执念已碎
执念已碎 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:38

    I had the same problem with Angular 7. Following is my solution in typescript.

    new Date(new Date().setFullYear(new Date().getFullYear() - 1))
    

提交回复
热议问题