V
String(month).match(/(1[0-2])|([6-9])|([1-5])/).slice(1).map((x, i) => x && i+1).filter(x => x)[0]
I winconst quarter = Math.floor((month + 3) / 3)
Size: a a a
V
String(month).match(/(1[0-2])|([6-9])|([1-5])/).slice(1).map((x, i) => x && i+1).filter(x => x)[0]
I winconst quarter = Math.floor((month + 3) / 3)
j
const quarter = Math.floor((month + 3) / 3)
Q
3
MK
M💊
j
i + 1
i += 1
i++
AB
M💊
К
XL
NW
NW
К
NW
Q
function validPass(password){
let regExp = /[A-z0-9]{4,19}?[0-9]+/gi
return password.match(regExp)?.[0] === password ? "VALID" : "INVALID"
}
Q