You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation does not reflect actual behavior:
console.log(date.getMonth(new Date('March 1, 2021'))) // 3
should be
console.log(date.getMonth(new Date('March 1, 2021'))) // 2
since new Date('March 1, 2021').GetMonth() returns 2
Environment
Browsers: Firefox 128.0
OS: Windows
Steps to reproduce
Documentation does not reflect actual behavior:
console.log(date.getMonth(new Date('March 1, 2021'))) // 3
should be
console.log(date.getMonth(new Date('March 1, 2021'))) // 2
since new Date('March 1, 2021').GetMonth() returns 2
Expected Behavior
console.log(date.getMonth(new Date('March 1, 2021'))) // 2
Actual Behavior
console.log(date.getMonth(new Date('March 1, 2021'))) // 2
Reproduction Link
https://vuetifyjs.com/en/features/dates/#format-options
The text was updated successfully, but these errors were encountered: