So I was on a site and I was peeking into the source code, and all the JavaScript code was obfuscated(as usual). I don't know what obfuscated code would be normally, but I think its like this:
var1 > 10 / 2, var1 = 0
is the same as
if(var1 > 10 / 2){
var1 = 0;
}
is this how it is? If not, please tell.