Moment JS:如何获取当前月份(含)之后的当前年份的月份名称

Moment JS: How to get Month Names of Current Year After the Current Month (Inclusive)

我想获取当前月份的名称以及当年未传递的月份名称。例如,当前月份是 7 月,我们还剩下当年的 8 月、9 月、10 月、11 月和 12 月,即 2021 年。

以下是我想要得到的输出:

['July', 'August', 'September', 'October', 'November', 'December']

你可以在不使用任何第三方插件的情况下做到这一点,只需拥有一个数组并使用 Date 对象的 getMonth 函数即可。

// Array of all the months
const months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
// Current month. For `getMonth` `January` is zero.
// more here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth
const month = new Date().getMonth();
const remaining = months.slice(month);
console.log(remaining);