List of questions
Related questions
Question 85 - Certified JavaScript Developer I discussion
Refer to the code below:
let sayHello = () => {
console.log ('Hello, world!');
};
Which code executes sayHello once, two minutes from now?
A.
setTimeout(sayHello, 12000);
B.
setInterval(sayHello, 12000);
C.
setTimeout(sayHello(), 12000);
D.
delay(sayHello, 12000);
Your answer:
0 comments
Sorted by
Leave a comment first