()
| 32 | // * we can go inward -> outward |
| 33 | // ! not outward -> inward |
| 34 | function myFunc2() { |
| 35 | let name = "brandon"; |
| 36 | // able to access x variable in a different scope |
| 37 | console.log(brandonPassword); // "bad" |
| 38 | } |
| 39 | |
| 40 | // myFunc2(); |
| 41 | // console.log(name); |
nothing calls this directly
no outgoing calls
no test coverage detected