DEV Community

Andrew Jones
Andrew Jones

Posted on

9 2

TIL: How to pause an infinite JavaScript loop in Chrome

Today I hit an infinite loop in a React component 😅

You can stop infinite loops in chrome without force-closing the program in two ways:

One: Dev Tools

  1. Dev tools (if not already open, go View -> Developer -> Developer Tools)
  2. Sources tab
  3. Press the Pause icon ⏸ near the top right of the Sources panel

Use method two if you can’t open dev tools.

  1. Press the three vertical dots in the top right corner of Chrome
  2. Hover over “More tools...” near the mid-bottom
  3. Press “Task Manager”
  4. Select the tab you are experiencing the loop in
  5. Hit “End Process”

Hopefully this can help someone!

Top comments (1)

Collapse
 
diraskreact profile image
Dirask-React

check this article too:
dirask.com/posts/Google-Chrome-sto...

SurveyJS custom survey software

Simplify data collection in your JS app with a fully integrated form management platform. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more. Integrates with any backend system, giving you full control over your data and no user limits.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay