The whole point of StackOverflow is to become the resource for programmers to find these sort of questions. You'd be surprised how much old and outdated information there is out there, there's no harm in rehashing things. As long as the user isn't obviously abusive like going around asking 100 simple questions to farm rep as they do tend to get (pity?) upvotes sometimes, I say go for it.
A quick example is actually exactly what you used: How to declare an array. If I do a google search for "how to declare an array in javascript" the first result suggests you do:
var x = new Array();
When actually the recommended way of doing it now is:
var x = [];
So a user that is "just googling it" might end up with the wrong information. If they ask this question on SO then a user could hopefully suggest the better method with some reasons why, and then the first result on Google could be StackOverflow!