closure.js 557 B

12345678910111213141516171819
  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 producer() {
  6. var x=3;
  7. var z=function() {
  8. WScript.Echo(x);
  9. }
  10. return z;
  11. }
  12. function consumer(f) {
  13. f();
  14. }
  15. var clo=producer();
  16. consumer(clo);