Get month name from Date

前端 未结 30 2941
情歌与酒
情歌与酒 2020-11-22 00:16

How can I generate the name of the month (e.g: Oct/October) from this date object in JavaScript?

var objDate = new Date(\"10/11/2009\");
30条回答
  •  攒了一身酷
    2020-11-22 00:47

    Instead of declaring array which hold all the month name and then pointing with an index, we can also write it in a shorter version as below:

    var objDate = new Date().toLocaleString("en-us", { month: "long" }); // result: August
    var objDate = new Date().toLocaleString("en-us", { month: "short" }); // result: Aug
    

提交回复
热议问题