1
I am having difficulty in the following exercise: Make a function call printAzul4 that shows 4 times the word Blue. (required to use for)
I can do the code just by using the for, but I can’t turn it into a function.
The resolution should be in javascript
for(var i = 0; i < 4; i++) {
console.log("Azul")
}
Wow! Thank you! I thought I would have to put some parameter in the function! Thank you again
– SOM