Question from the Javascript - Fundamentals test

Write a Javascript function that prints 'Hello'

Medium

What should I put in place of "?" on last line to display the message ''Hello''?

function sayHello() { console.log('Hello'); } 
function test (function_to_test) { function_to_test(); }
test(sayHello?);
Author: Vincent CotroStatus: Published(Update)Question passed 106 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!