Answer the question
In order to leave comments, you need to log in
How do optimizers/minifiers work and what's the difference?
How from this one (abstract PL):
Hex C = "#000"; // "мысли" минификатора: значение не используется и обязательно изменится => пропускаем
int R = random(1, 3); // R - число от 1 до 3
if (R == 1) C = "#111"
if (R == 2) C = "#222"
if (R == 3) C = "#333" // замечена какая-то закономерность => превращаем в массив
do thisHex C = "#" + Array('111', '222', '333') [random(0, 2)]
? Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question