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