test117.js 550 B

123456789101112131415
  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 test0(a) {
  6. for(var i = 0; i < 1 ; ++i) {
  7. a[1] = 0;
  8. a[0] = 0;
  9. }
  10. }
  11. test0([0, 0]);
  12. var a = [];
  13. test0(a);
  14. WScript.Echo("test0: " + a[1]);