Page keeps becoming unresponsive

I have tried to refresh and get back to the fibonacci odd numbers challenge but the page keeps becoming unresponsive. I may have created a infinite loop or something but i do not get a chance to edit the script as it keeps freezing. Please Help.

If you are stuck in an infinite loop, you can edit the URL to get back to a working page. This link explains it:

I had the same problem. Go to freecodecamp.com but not Fibonacci page as it will lock up. I went to my user profile. Open up the console and clear the local storage by typing
localStorage[“Sum All Odd Fibonacci NumbersVal”] = null
I don’t know whats causing it to lock up but as my code evolved (I resorted to doing it in sublime and pasting into the browser) the problem went away. [My solution](https://www.freecodecamp.com/challenges/sum-all-odd-fibonacci-numbers#?solution=function%20sumFibs(num)%20{ %20%20var%20fibonacci%20%3D%20[0%2C1]%3B %20%20%20%20for(var%20i%20%3D%202%3B%20i<%3Dnum%3B%20i%2B%2B)%20{ %20%20%20%20%20%20var%20next%20%3D%20fibonacci[i-2]%20%2B%20fibonacci[i-1]%3B %20%20%20%20%20%20%2F%2F%20console.log(next%20%2B%20"%20%3D%20"%20%2B%20%20fibonacci[i-2]%20%2B%20"%20%2B%20"%20%2B%20fibonacci[i-1])%3B %20%20%20%20%20%20if%20(next%20<%3D%20num)%20{ %20%20%20%20%20%20%20%20fibonacci.push(next)%3B %20%20%20%20%20%20} %20%20%20%20} %20%20%20%20var%20oddOnly%20%3D%20fibonacci.filter(function(number){ %20%20%20%20%20%20return%20number%20%%202%20!%3D%3D%200%3B%20%20 %20%20%20%20})%3B%0A%0A%20%20%20%20%2F%2Fconsole.log(oddOnly)%3B%0A%0A%20%20%20%20return%20oddOnly.reduce(function(prev%2C%20current)%20%7B%0A%20%20%20%20%20%20return%20prev%20%2B%20current%3B%0A%20%20%20%20%7D)%3B%0A%0A%7D%0AsumFibs(4)%3B%0A) that didn’t crash browser.

so where would i put run=disabled in the followig url?
https://www.freecodecamp.com/challenges/sum-all-odd-fibonacci-numbers

i have tried placing it in multiple spots and refreshing it but it still wil not budge.

Apologies for the ugly post, but here are examples:

Here is an example that will freeze: https://www.freecodecamp.com/challenges/sum-all-odd-fibonacci-numbers#?solution=%2F%2F%20noprotect function%20sumFibs(num)%20{ %20%20while(true)%20{ %20%20%20%20num%3Dnum%2B%2B%3B %20%20} %20%20 %20%20return%20num%3B } %20%20 sumFibs(4)%3B

Here’s the same example but with ?run=disabled& before the solution part of the URL query: https://www.freecodecamp.com/challenges/sum-all-odd-fibonacci-numbers#?run=disabled&?solution=%2F%2F%20noprotect function%20sumFibs(num)%20{ %20%20while(true)%20{ %20%20%20%20num%3Dnum%2B%2B%3B %20%20} %20%20 %20%20return%20num%3B } %20%20 sumFibs(4)%3B

Thanks. Appreciate the reply.

Thanks, y’all are hero’s! Locked up my Fibonacci too.