Добавил валидацию в таск 6

parent d34cf26d
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
const userAnswer = parseInt(prompt('Введите кол-во секунд:')) const userAnswer = parseInt(prompt('Введите кол-во секунд:'))
if(isNaN(userAnswer) !== true) {
console.log(`Осталось ${userAnswer} секунд`) console.log(`Осталось ${userAnswer} секунд`)
const hours = Math.floor(userAnswer / 3600) const hours = Math.floor(userAnswer / 3600)
...@@ -22,6 +23,9 @@ ...@@ -22,6 +23,9 @@
console.log(`Осталось менее часа`) console.log(`Осталось менее часа`)
} }
} else {
console.log('Нужно ввести числовые значение.')
}
</script> </script>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment