Get week of year in JavaScript like in PHP

后端 未结 19 1353
南方客
南方客 2020-11-22 02:38

How do I get the current weeknumber of the year, like PHP\'s date(\'W\')?

It should be the ISO-8601 week number of year, weeks starting

19条回答
  •  难免孤独
    2020-11-22 03:11

    If you are already in an Angular project you could use $filter('date').

    For example:

    var myDate = new Date();
    var myWeek = $filter('date')(myDate, 'ww');
    

提交回复
热议问题