Прописал логику при выборе первого пункта

related #3
parent 1483898d
......@@ -22,4 +22,12 @@ function getTrucksInfo (truks: Truck[]): void {
while (true) {
const userAns: any = readlineSync.question('Меню:\n 1. Отобразить текущее состояние грузовиков\n 2. Показать данные грузовика по id \nВыберите действие: ');
let isNum: boolean = isNaN(userAns);
if (isNum === false) {
if (parseInt(userAns) == 1) {
getTrucksInfo(trucks);
continue;
};
} else {
continue;
};
};
\ 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