You can use the getISOWeekYear() function from the date-fns library in JavaScript to get the ISO week-numbering year of a given date.
Here's an example code snippet that shows how to use the getISOWeekYear() function to get the ISO week-numbering year of today's date:
index.tsx190 chars7 linesThis will output:
index.tsx53 chars2 lines
In the example, we first import the getISOWeekYear function from the date-fns library. We then create a new Date object with today's date and pass it to the getISOWeekYear() function to get its ISO week-numbering year. Finally, we log the result to the console.
gistlibby LogSnag