()
| 78 | |
| 79 | */ |
| 80 | function testLet(){ |
| 81 | |
| 82 | // console.log(name); |
| 83 | let name = 'brandon'; |
| 84 | |
| 85 | name = 'maica'; |
| 86 | // console.log(name); |
| 87 | |
| 88 | // let name = 'alexi'; |
| 89 | |
| 90 | if(true) { |
| 91 | let access = false; |
| 92 | } |
| 93 | |
| 94 | |
| 95 | } |
| 96 | |
| 97 | // testLet(); |
| 98 |
nothing calls this directly
no outgoing calls
no test coverage detected