newobj.js 580 B

123456789101112131415161718
  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. OldObject = Object;
  6. Object = function()
  7. {
  8. this.hello = "yay";
  9. }
  10. var o = new Object();
  11. WScript.Echo(o.hello);
  12. var o2 = { hello2 : "yay2" }
  13. WScript.Echo(o2.hello);
  14. WScript.Echo(o2.hello2);