3

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?

chrisjlee
  • 21,691
  • 27
  • 82
  • 112
  • 2
    Possible duplicate of [How to remove all recent console command](http://stackoverflow.com/questions/21149156/how-to-remove-all-recent-console-command) – Garbee Jun 14 '16 at 22:49

1 Answers1

5

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.

Community
  • 1
  • 1
Gideon Pyzer
  • 22,610
  • 7
  • 62
  • 68