regex.js 549 B

123456789101112131415
  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 hello()
  6. {
  7. var regex = /blah/;
  8. WScript.Echo("blah: " + regex.blah);
  9. regex.blah = 1;
  10. WScript.Echo("blah: " + regex.blah);
  11. }
  12. hello();
  13. hello();