R
Size: a a a
R
V
О
М
SW
d
first % second === first ? second / first : first / second
AP
const min = Math.min(myRandom, secondRandom);
const max = Math.max(myRandom, secondRandom);
const b = max / min;
V
М
DD
J
DD
const min = Math.min(myRandom, secondRandom);
const max = Math.max(myRandom, secondRandom);
const b = max / min;
d
V
AP
V
DD
V
М
if (myRandom < secondRandom) [myRandom, secondRandom] = [secondRandom, myRandom];
b = myRandom / secondRandom
V