expandos.js 638 B

1234567891011121314151617181920
  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 write(v) { WScript.Echo(v); }
  6. var o = new Object();
  7. o["1"] = 100;
  8. write("o[\"1\"]: " + o["1"]);
  9. write("o[1]: " + o[1]);
  10. o[2] = 200;
  11. write("o[2]: " + o[2]);
  12. write("o[\"2\"]: " + o["2"]);
  13. o.length = 2;
  14. write("o.length : " + o.length);