The code snippet:
function test() { }
is:
- the declaration of the
test
variable in which the values returned by the completed function will be stored. - the declaration of an empty
test
function. - incorrect, as the code is wrong and does not mean anything.
- the call of the
test
function.
Explanation & Hint:
The code snippet defines a function named test without any statements inside the function body. It is an empty function. |