I am working on calling random code and I cannot figure out how much this is possible.
function(obj) {
if ( (obj < 10) && (obj > 10) ) {
return true;
}
}
Things I tried set the interval to change the variable to 0ms (which ends with the default browser), making obj a life function that increments a global variable each time, and a whole bunch of other seemingly less useful approaches. Any ideas here, or pointers to something obvious, am I missing?
source
share