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

The parameter of the function is 'word'.