JavaScript Function isNaN

Small JavaScript function to check if a variable is a number.

function checkValue(value){
  if(isNaN(value)){
    return false;
  }else{
    return true;
  }
}

Use this in your form validation if you are checking to see that a user has entered a number.

Add new comment

The content of this field is kept private and will not be shown publicly.