通过 JavaScript 中的月份索引查找季度
问题
我们需要编写一个 JavaScript 函数,该函数接受基于 1 的月份索引,并返回月份所在的季度。
示例
以下是代码 −
const month = 7; const findQuarter = (month = 1) => { if (month <= 3) { return 1 } else if (month <= 6) { return 2 } else if (month <= 9) { return 3 } else if (month <= 12) { return 4 } } console.log(findQuarter(month));
结果
以下是控制台输出 −
3
广告