Question

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

Answers

There are no human answers yet.
Answered by GPT 3.5
The parameter of the function is 'word'.

Related Questions