if(input.value == Number){
alert('вы прошли');
}else if(input.value == буквы){
alert('вводить можно только буквы');
}
<input type="number" name="quantity" min="1" max="5">
if(typeof(input.value) == 'number'){
alert('вы прошли');
}else if(typeof(input.value) == 'string'){
alert('вводить можно только буквы');
}