blob: d870fbaa2e52e6961d1daa40cd2f547f13ef5266 [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.
//-------------------------------------------------------------------------------------------------------
var a = [];
a[4294967290] = 4;
a.splice(0,0,0,1); //length grows by 2
a[4294967291] = 5;
WScript.Echo("PASS");