What is wrong with the code that determines whether it is a number or not?

  function isNumber(num){
                    if( !isNaN(num.value) && (num.value != "")){
                        return true;
                    } else {
                        return false;
                    }
               

isNumber (5) returns false I don"t know what"s wrong

Nov.09,2021



"undefined"


 

Menu