newProto.js 661 B

1234567891011121314151617181920212223
  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 Blah()
  6. {
  7. this.hello = "yay";
  8. }
  9. Blah.prototype = "meow"
  10. function Derived()
  11. {
  12. }
  13. Derived.prototype = new Blah();
  14. var blah = new Blah();
  15. WScript.Echo(blah.hello);
  16. WScript.Echo(blah.toString());
  17. var derived = new Derived();
  18. WScript.Echo(derived.toString());