how to repeat a message in the console log code example
Example: how to repeat a message in the console log
var loops = 0;
var loop = function(){
while(loops < 3){
//Your code goes here!
console.log ("I'm looping!");
loops++;
}
};
loop();