Event Loop & Microtasks

What potential issue does this code demonstrate?
function loop() {
  Promise.resolve().then(loop);
}
loop();
Next Question (14/20)