In most javascript apps I usually declare an array like so
var x = [];
but I've seen a ton of example code on MDN that take this approach instead
var x = new Array(10);
With V8/other modern JS engines, do you see a real benefit one way or the other?