scrimba
Основы JavaScript
do ... while цикл
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

do ... while цикл
AboutCommentsNotes
do ... while цикл
Expand for more info
index.js
run
preview
console
function geRandomNumber(upper) {
return Math.floor(Math.random() * upper) + 1;
}
Console
index.html
-4:39