let userInput = '42abc';
let number = parseInt(userInput);
if (isNaN(number)) {
    console.log('Invalid input');
}