I have this problem here, I want to check if the value of the input is going to be a number or not on keyup. Any help would be appreciated.
 $('input').keyup(function () {
 var check_nm = $('input').val();
 if(check_nm != "123"){
   console.log('not number');
 }else{
   console.log('is number');
 }
});
 
     
     
     
     
    