Where can I find a comprehensive dictionary of all the default javascript keywords and function/method/member names?
Some of the places I found:
- I have Notepad++, so my first idea was to just extract all the auto-fill words from the javascript xml. It's what I have currently, but it's not comprehensive.
- Then I remembered that Chrome's js console also has auto-fill, and it's certainly pretty comprehensive (it also includes user-defined stuff, but not on a completely blank page). The only problem is, how do I find where the default js setup for Chrome is cached?
Notes: I was also thinking, maybe there's a comprehensive online dictionary or something. Also, even if it's not a perfect csv of all the words, I can always write a quick filter program to properly format it. Lastly, it doesn't need to be so comprehensive as to include every word and every vendor-specific function/object name - it's mostly for personal use, and therefore isn't vital for it to be constantly accurate and up-to-date, etc.