Node.js - Timers and Scheduling
What will be logged to the console when the following code runs?
const timer = setTimeout(() => console.log('World'), 1500);
clearTimeout(timer);
console.log('Finished');