js> function Array() { throw "don't call this" } js> [].length 0 js> [1].length 1 js> [,1,2].length 3 js> [1,,2].length 3 js> [1,2,].length 2 js> [,].length 1 js> [1,,].length 2