I'm working on a random code challenge, and I cannot figure out for the life of me how this would be possible
function(obj) {
if ( (obj < 10) && (obj > 10) ) {
return true;
}
}
Things I've tried are setting an interval to change the variable at 0ms(which ends up being browser default), making obj an life function that increments a global variable every time it's used, and a whole bunch of other seemingly less useful approaches. Any ideas here, or pointers for something obvious I'm missing?