Сделал валидацию и закончил таск 5

parent 79531a62
......@@ -10,6 +10,10 @@
const userAnswer = prompt('Введите символ')
if(userAnswer !== null && userAnswer !== '') {
if(userAnswer.length > 1) {
alert('нужно ввести один символ')
} else {
let result = ''
for(let i = 0; i < 7; i++) {
......@@ -22,6 +26,10 @@
}
alert(result)
}
} else {
alert('Нужно ввести символ')
}
</script>
</body>
......
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