我是 JS 的新手,有一个简单的问题,我怎样才能让我的代码在下面返回月份名称,在这种情况下是 12 月?
谢谢你。
window.onload = function() {
var monthName = getMonth(12);
document.getElementById("months").innerHTML = getMonth(month);
};
function getMonth(month) {
var monthName;
if (month === 12) {
}
return monthName;
}