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'.
Similar Questions
  1. What is printed by the following program?function printNumbers(two, one, zero){ println(two); println(one); println(zero); }
    1. answers icon 1 answer
  2. What is printed by the following code?function printNumbers(first, second, third){ println(first); println(second);
    1. answers icon 1 answer
  3. What are the parameters of the printNumbers function?function printNumbers(first, second, third){ println(first);
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions