For instance, I would like to list all the scenarios in which the JavaScript interpreter produces an undefined value. I already have a bunch of items in this list. For example:
a variable that has not been initialized evaluates to
undefinedvar x; x // => undefineda function invocation evaluates to
undefinedif the invocation doesn't explicitly return a valuevar fn = function () { // no return statement here }; var retval = fn(); retval // => undefined
... and a couple more.
However, I am only one person, and while I consider myself an advanced JavaScript programmer, I still don't doubt that the list would be quite more accurate and complete if it were collectively compiled on SO. I also don't doubt that the resident JavaScript programmers on SO (well, at least some of them) would gladly provide information to such a thread.
So, I was thinking about opening a new thread, and placing the list (in its current state) in the question. Then, others could provide new items via answers, and I would update the list in my question appropriately. Others could also edit the list in my question directly - I wouldn't mind. Also, reputation would not be relevant in this thread - I would just like to have the complete list on SO, as a end-result.
How about it? May I do this?