Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
function getCurrentQuarter(date = new Date()) { return Math.floor(date.getMonth() / 3 + 1); } console.log(getCurrentQuarter()); /* run: 4 */