blob: 728635621e9e9fcd371d7ac39a41469f614b8598 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function write(v) { WScript.Echo(v + ""); }
Object.prototype[5] = "obj.proto5";
Object.prototype[7] = "obj.proto7";
Array.prototype[1] = "arr.proto.1";
Array.prototype[2] = "arr.proto.2";
Array.prototype[3] = "arr.proto.3";
Array.prototype[6] = "arr.proto.6";
var n=8;
var arr = new Array(4);
arr[1] = null;
arr[2] = undefined;
for (var i=0;i<n;i++) {
write("arr[" + i + "] : " + arr[i]);
}
function test() {
var x;
switch (x) {
default:
[1, , ];
}
};
test();
test();
function ArrayLiteralMissingValue()
{
var arr1 = [1, 1, -2147483646];
write("[] missing value:" + arr1[2]);
}
ArrayLiteralMissingValue();
function ArrayConstructorMissingValue()
{
var IntArr0 = new Array(-1, -2147483646);
write("Array() missing value:" + IntArr0[1]);
}
ArrayConstructorMissingValue();