Loops5

PHOTO EMBED

Fri Jul 09 2021 06:30:51 GMT+0000 (Coordinated Universal Time)

Saved by @buildadev

var a = 0 ;
while(a<5)
{
    console.log("The value of a is - "+a);
    a++;
}
content_copyCOPY