Practice

 function printPoem(){


    console.log("Twinkle Twinkle Little Star");
    console.log("How I wonder What you are?");
    console.log("Upabove the world so highhh");
    console.log("like a diamond in the sky...");
}
printPoem();

function rollDice(){
    let rand=Math.floor(Math.random()*6)+1;
    console.log(rand);
}
rollDice();
rollDice();

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code