| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function test()
- {
- var s = "1";
- for (var i = 0; i < 2; i++)
- {
- if (i == 0)
- {
- s = "1000000" + s + "1";
- }
- else
- {
- s -= 1;
- }
- }
- WScript.Echo(s);
- }
- test();
- test();
|