This file contains hidden or 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
<div class="task5"> | |
<form class="task5-form"> | |
<label for="groups">Group:</label> | |
<select name="groups" id="groups"> | |
<option value="0">Group 1</option> | |
<option value="1">Group 2</option> | |
</select> | |
<label for="lessons">Lesson:</label> | |
<select name="lessons" id="lessons"> |
This file contains hidden or 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
let n = 10; | |
function count(n) { | |
// for(let i = 1; i <= n; i++){ | |
// console.log(`Ввожу число ${i}`) | |
// }; | |
if(n--){ | |
console.log(`Выводим N: ${n}`) | |
count(n); | |
} |