I got the date as follow
const today = new Date();
now I need to get the week number of the year. How do I get it on the typescript?
I tried const todayFormated = this.datepipe.transform(today, 'W');
but it is returning the week number of the month not year