Answers for "call a function multiple times"

0

call a function multiple times

function beCheerful() {
    console.log('good morning');
}

for (var i = 0; i < 98; i++) {
    beCheerful();
}
Posted by: Guest on March-09-2020

Code answers related to "call a function multiple times"

Code answers related to "Javascript"

Browse Popular Code Answers by Language