blob: 2e85a828579320df2f64c9c42b14d06726a69972 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
WScript.Echo("Concatenation of empty strings.");
var x = "";
var y = "";
x += y;
x = x + y;
x += "";
y += "";
x = x = "";
for(var i = 0; i < 10000; ++i)
{
x += x + y + x + y + x + "";
}
WScript.Echo("{" + x + "}");