Do ... While Loop

Size
1,742 Kb
Views
18,216

How do I make an do ... while loop?

What is a do ... while loop? How do you make a do ... while loop? This script and codes were developed by Milos Stankovic on 14 September 2022, Wednesday.

Do ... While Loop Previews

Do ... While Loop - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Do ... While Loop</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Do ... While Loop - Script Codes JS Codes

var randomNumber = getRandomNumber(10);
var guess;
var guessCount = 0;
correctGuess = false;
// do-while loop se razlikuje od while loopa po tome sto se
// deo koda pod do prvo (obavezno) izvrsi, pa se onda proverava da li
// ce jos jednom da se izvrsava (ako je while false)
do { guess = prompt("What's the random number?") guessCount++; if ( parseInt(guess) === randomNumber ) { correctGuess = true; }
} while ( !correctGuess ) // do-while loop radi sve dok vrednost ovde nije FALSE (mi imamo suprotno od true)
// kada izadjemo iz loopa, izvrsili smo zadatak pa dajemo rezultat
document.write("You got it! You needed " + guessCount + " attempts.");
// fja koja daje random number od 1 do upper
function getRandomNumber( upper ) { var num = Math.floor(Math.random() * upper) + 1; return num;
}
Do ... While Loop - Script Codes
Do ... While Loop - Script Codes
Home Page Home
Developer Milos Stankovic
Username milstanyu
Uploaded September 14, 2022
Rating 3
Size 1,742 Kb
Views 18,216
Do you need developer help for Do ... While Loop?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Milos Stankovic (milstanyu) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!