Struggling with a challenging coding problem, I am completely stumped on how to make it work.
function(obj) {
if ( (obj < 10) && (obj > 10) ) {
return true;
}
}
I've attempted various solutions such as manipulating the variable at an extremely short interval or creating a function for obj that updates a global variable each time it's called. Despite these efforts, nothing seems to be working. Any suggestions or hints on what obvious detail I might be overlooking?