Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

Learn JavaScript WHILE LOOPS in 8 minutes! 🔁

84.1K views on YouTube

// while loop = repeat some code WHILE some condition is true

let loggedIn = false;
let username;
let password;

while(!loggedIn){
username = window.prompt(`Enter your username`);
password = window.prompt(`Enter your password`);

if(username === “myUsername” && password === “myPassword”){
loggedIn = true;
console.log(“You are logged in!”);
}
else{
console.log(“Invalid credentials! Please try again”);
}
}