forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 2
FreeCodeCamp Clear Your Browser Local Storage
Quincy Larson edited this page Aug 20, 2016
·
1 revision
Removing all your locally stored challenges will solve many problems related to the browser crashing on FreeCodeCamp
In Chrome:
- On freecodecamp open your console
- Windows:
Ctrl
+Shift
+J
- Mac OS:
Cmd
+Opt
+J
- Windows:
- Go to resources tab(chrome).
- There click on the "Local Storage" link in the nav bar on the right.
- Delete all the entries on the right side, or run this command in your browser's console to clear all entries from your localStorage:
localStorage.clear();
- See if this solves your issue
Alternatively, if you are having issues with a specific challenge freezing your browser, find the name of that challenge in local storage and delete just that one.
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