© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Marco Alka
Software Engineer, Technical Consultant & Mentor
Often, it's a bug: blocking infinite loops
while(true) {} // or, which happens very easily eventA.on('fired' () => eventB.fire()); eventB.on('fired' () => eventA.fire()); // or function foo() { /* bug in recursive code */ return foo(); }