// tab - таблица, nr - номер строки, nc - номер столбца const getIndex = (tab, nr, nc) => { const cell = tab.rows[nr]?.cells[nc]; if (cell) return cell.querySelector('select').selectedIndex; }