Preview:
////////******* LOOPS  IN JS ********///

// while loop
let index = 0
while(index <= 10){
    console.log(`the value of index is ${index}`);
    index = index+2;
}

let myarray = ["srk" , "salman khan" , "amir khan"]
let arr = 0 
while(arr < myarray.length){
    console.log(`value is ${myarray[arr]}`);
    arr = arr +1 
}

// do while loop 
let score = 0 
do{
    console.log(`Score is ${score}`)
    score++
}
while(score <= 10);
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter