As following example
var m="hello" or var m="50"
check the string whether the string got Numeric Value or Alphabet's
i am using this but it is not working
var check=parseInt(m);
if(Number(check)==NaN)
{
alert("this is Not a Number ");
} else{
alert("This is Number ");
}