Based on discussion in this JavaScript chat and information referenced by BoltClock and Mark Trapp, here is what we've concluded:
The Tag Wiki is the best place to keep a list of frequently asked questions. In fact, some tag wikis, such as the "Frequently Asked Questions" section in the Java tag library, already maintain such a list:
NOTE: The questions listed in the Java tag wiki all link to real StackOverflow Java questions:
Frequently Asked Questions
People often ask about the following Java topics:
- Difference between equals() and ==
- How do I compare strings in Java?
- Overriding equals() and hashCode() in Java
- Why NoClassDefFoundError?
- Why did Java have the reputation of being slow?
- How do I avoid null checks in Java?
- How can I convert my java program to an .exe file
- Is List<Dog> a subclass of List<Animal>? Why aren't Java's generics implicitly polymorphic?
- Compare dates in Java
- Is Java pass by reference?
- NoSuchMethodError in Java
- Why can't I print a double correctly?
(Submitters, please only list questions which actually are frequently asked).
The JavaScript tag library, on the other hand, just has a list of questions and brief, inline answers, with no links to real questions asked under the JavaScript tag:
NOTE: The questions listed in the JavaScript tag wiki are not links to StackOverflow questions. This is the area we believe needs work.
Frequently Asked Questions
Find some answers to some of the more frequently asked questions about JavaScript and related technology below.
Q: I have this JSON structure, how can I access property x.y.z?
A: Every structure is different but how to access them is the same. First you have to parse the JSON into a JavaScript object or array. Then access the correct properties or array indexes. To learn about object and arrays, have a look at the MDN JavaScript guide.
It is advisable to inspect the structure step by step to figure out which property or index you have to access, i.e. console.dir(x), console.dir(x.y), console.dir(x.y[2]) etc.
Q: How can I pass a PHP array to JavaScript?
A: pass php array to javascript function
In the chat, we concluded that we don't yet need additional meta or community wiki posts, and that this is something we can do as we answer and vote to close questions in this tag. If we run across a duplicate JavaScript question, we'll simply look for a good example, edit the questions and answers to bring it up to speed, then make an edit (or suggested edit) to the tag wiki to include the example question.
The only concern I have is for those of us who don't have enough reputation to make edits to tag wiki. Will adding a single question be considered a substantial edit? This is debatable.
If this process appears to be sustainable, then it may be helpful to schedule a chat to look at this in greater detail.
:P– squint Jun 24 '12 at 23:00