Javascript array best practice to use [] instead of new array?
- by AlfaTeK
I read at many tutorials that the current best practices to create a new javascript array is to use "var arr = []" instead of "var arr = new Array()".
What's the reasoning behind that?