今日の月を取得する際に getMonth() + 1; としないのはなぜですか?

カレンダーを作るときは month の値をそのまま使いたいからです。
2021年6月1日
ユーザー
const today = new Date();
let year = today.getFullYear();
let month = today.getMonth();

上記のコードについて質問です。

今日の月を取得する際に、getMonth() + 1; とならないのはなぜなのでしょうか?

どうぞよろしくお願い致します。

この回答を見るにはプレミアムプランへの登録が必要です

プレミアムプランとは?