29.
Which keyword is used to invoke a JavaScript function?
eval()
return()
call()
invoke()
Correct: B
The return keyword is used to invoke or execute a JavaScript function. When the return keyword is used, it immediately ends the function execution and returns a value back to the caller.