E
Size: a a a
E
BB
Ф
В
D
E
IS
D
IS
const isBetween = (from, to) => number => number >= from && number <= to
const in4050 = isBetween(40, 50)
const in3040 = isBetween(30,40)
const in3050 = (a, b) => in4050(a) && in4050(b) || in3040(a) && in3040(b)
В
D
IS
IS
j
R
IS
BB
IS