I want to be able to test whether a value is within a number range. This is my jQuery code...
if ((year < 2099) && (year > 1990)){ return \
If you don't like the boolean operator, you could always use nested if statements:
if (1990 < year) { if( year < 2099) return 'good stuff'; }