fieldcopyprop_nonwritable.js 521 B

123456789101112
  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. for (var b in [1]) { NaN+=b; }
  6. WScript.Echo(NaN);
  7. var x = 4;
  8. Object.defineProperty(this, "x", { writable: false });
  9. x = 3;
  10. WScript.Echo(x);