concat2.js 575 B

12345678910111213141516171819
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. WScript.Echo("Basic string concatenation, II.");
  6. function f(x,y)
  7. {
  8. return x + "." + y;
  9. }
  10. var str = "-";
  11. for(var i = 0; i < 10; ++i)
  12. {
  13. str = f(i,f(str, i));
  14. }
  15. WScript.Echo(str);