-
Notifications
You must be signed in to change notification settings - Fork 2
FreeCodeCamp Clear Specific Data Local Storage
Removing specific values from your browser's local storage will solve many problems related to the browser crashing or freezing on FreeCodeCamp.
This solves, as example, a common problem with browser hanging out in a challenge's page after saving a response with an infinite loop.
When this happens, you must delete the value in localStorage
storing that response.
-
On freecodecamp.com, open your developer tools.
- More tools > Developer tools (or
Ctrl
+Shift
+I
(Windows),Cmd
+Opt
+I
(Mac))
- More tools > Developer tools (or
-
Navigate to the
Resources
tab -
Expand the
Local Storage
item in the left pane -
Select
http://www.freecodecamp.com
-
Find the challenge you wish to delete data in the right pane
-
Right click the desired challenge and select
Delete
-
On freecodecamp.com, open your web console with
-
Ctrl
+Shift
+K
-
-
From there, using directly the console:
- Type
console.log(localStorage);
and hitEnter
. - Click in
Storage
link. - The Storage panel will appear at right.
- Filter the results to find the Algorithm, Front End Project or Challenge causing the problem.
- When located, mouse over it and click the
x
at right. - Once removed, check if the problem was solved. Refresh or close and open the browser if necessary.
- Type
Note: This can also be done with the Storage Inspector, but seems like Firefox hangs out when there are so many values.
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links