I have been reviewing other peoples javascript codes and noticed variable lines like this:
opacity = isIn ? 0 : 1;
,
opacity = isIn ? opacity + gap : opacity - gap;
,
var s = this == binary ? h(binary, f, change, text) : h(text, r, change2, binary);
,
And other lines of code like that. How do they work? What type of variable are they?
Thank you so much!