blob: 6922e38d9a0c3117fcf701acd21d195a90e79035 [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 = new Object();
function replacer(k, v)
{
return v;
}
for (var i = 0; i < 1290; i++)
{
a[i + 10] = 0;
}
WScript.Echo(JSON.stringify(a, replacer).substring(0,20));