blob: 7ff9329d2230e07f27c01a5a1f6ef9e6330b9804 [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= [1, 2.2, 3.3]
Array.prototype[4] = 10;
function Test()
{
a.reverse();
WScript.Echo(a);
}
Test();