hide NaN results
hide NaN results
Out of context: Reply #8
- Started
- Last post
- 8 Responses
- caseyc0
What ace said, 'cept with the proper case:
if ( isNaN(per) )
that means the if body would occur if per is NOT a number, alternatively:
if( !isNaN(per) )
means the if body will occur if per IS a number.
Cheers,