deadstore_oneblockloop.js 531 B

12345678910111213141516
  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. function test(num) {
  6. var str = "";
  7. do
  8. {
  9. str += "0";
  10. } while (str.length < num);
  11. return str;
  12. }
  13. WScript.Echo(test(4));