outofmem.js 661 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. try
  6. {
  7. var longString = "A";
  8. for (var i = 0; i < 31; i++)
  9. longString += longString;
  10. WScript.Echo(longString.toString());
  11. }
  12. catch (e)
  13. {
  14. WScript.Echo(e.name);
  15. WScript.Echo(e.message);
  16. WScript.Echo(e.description);
  17. WScript.Echo(e.number);
  18. }