Last active
August 19, 2018 13:26
-
-
Save Khuzha/30cc0da36c8aa7427dca16326383daef to your computer and use it in GitHub Desktop.
Понимаю, что не очень ясно изложил проблему, но это нужно видеть на деле: https://ibb.co/ic6pqz . Если будет совсем не лень, попробуйте запустить у себя - так нагляднее всего. Заранее благодарен за любую помощь! *И да, при запуске из браузера проблемы нет. Пример: https://codesandbox.io/s/0x0okw4yll . Причем в массив записывает правильно, не соз…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const prompt = require('prompt-sync')(); | |
let names = []; | |
var i = 0; | |
//while (true) { | |
for (; true; i++) { | |
if (i == 0) { | |
names[i] = prompt('Введите первое имя. Для завершения ввода оставьте строку пустой и просто нажмите Enter: ', 'Спасибо. Ввод имен завершен.'); | |
if (names[i] === 'Спасибо. Ввод имен завершен.' || names[i] === null || names[i] === '') { | |
console.log(names[i]); | |
break; | |
} | |
} else { | |
names[i] = prompt('Вводите имена: ', 'Спасибо. Ввод имен завершен.'); | |
if (names[i] === 'Спасибо. Ввод имен завершен.' || names[i] === null || names[i] === '') { | |
names.pop(); | |
console.log(names[i]); | |
break; | |
} | |
} | |
} | |
console.log(names); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Консоль: