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

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