Quote:
Originally Posted by Tolnaftate2004
PHP Code:
temp.example = (temp.suckawhat = function () {
temp.i = 2;
return temp.i*5;
})();
Like I said, not so pretty...
|
Although that may be valid syntax (can't check right now), I don't see how that would run the function. My guess is that it would just execute:
Storing the function in a temp.suckawhat, which would evaluate to 0(?), then 0 would be stored in temp.example.
If that actually works I may have to hurt someone though since it literally makes no sense.