Comment obtenir le mois en cours dans Express JS

const day = today.getDate();        // 24
const month = today.getMonth();     // 10 (Month is 0-based, so 10 means 11th Month)
const year = today.getFullYear();   // 2020
kito