(arg)
| 1 | "use strict"; |
| 2 | function outerFunction(arg) { |
| 3 | var variableInOuterFunction = arg; |
| 4 | function bar() { |
| 5 | console.log(variableInOuterFunction); |
| 6 | } |
| 7 | bar(); |
| 8 | } |
| 9 | outerFunction("hello closure"); |
| 10 | var another; |
| 11 | (function (another) { |
no test coverage detected