Question: 5
In the following function printThreeTimes:
function printThreeTimes(word){
println(word);
println(word);
println(word);
}
JavaScript
What is the parameter of the function?
printThreeTimes
function
println
word
1 answer
The parameter of the function is 'word'.