Reputation: 23100
I use the console a lot to enter and evaluate expressions. Often times i am wrong and fudged some expression names. After doing so, the chrome devtools console will autocomplete and suggest some of my mistypings.
Is there a way to clear console history suggestions?
Upvotes: 3
Views: 4258
Reputation: 23978
It is stored in Local Storage in the context of DevTools itself, presumably to prevent accidental or malicious access/modifications from websites using the Web Storage API. You can follow the steps outlined here to clear the history. It saves me having to repeat the details unnecessarily.
Upvotes: 5