t3.js 487 B

12345678910111213
  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. var a = { x: 20, y: 30 };
  6. Object.freeze(a);
  7. delete a.x;
  8. a.x
  9. var a = { x: 20, y: 30 };
  10. WScript.Echo("ok");