Javascript: Loop Mastery Practice
LATIHAN
Laksanakan ketiga-tiga For, Do/While dan While dalam satu aturcara.
// Write your code below!
var testFor= function(){
for (i=1;i<10;i++){
console.log ("ini adalah loop bagi for" +i);
};
};
var testDoWhile= function(){
hidupkanLoopDo=true;
do {
console.log ("Ini adalah loop bagi do untuk kali ini sahaja");
}while (hidupkanLoopDo=false);
};
var testWhile=function(){
i=1;
while(i<10){
console.log ("Ini adalah loop bagi While yang ke"+i);
++i;
}
}
testFor();
testDoWhile();
testWhile();
ini adalah loop bagi for1 |
