(name)
| 6 | // console.log('hello ' + 'johnny'); |
| 7 | |
| 8 | function myFunc(name){ |
| 9 | // console.log(`hello ${name}`); |
| 10 | name = name.toUpperCase(); |
| 11 | // return `hello ${name}` |
| 12 | // console.log('do we reach this console.log?'); |
| 13 | for(let i = 0; i < 4; i++){ |
| 14 | console.log(i); |
| 15 | return 'done' |
| 16 | } |
| 17 | }; |
| 18 | |
| 19 | // want to see output |
| 20 | // wrap the function call in a console.log |
nothing calls this directly
no outgoing calls
no test coverage detected