(name)
| 82 | // sayMyName2('Kevin') |
| 83 | |
| 84 | function greeting(name) { |
| 85 | // greet = 'hi ' + name + ', Nice to meet you!' |
| 86 | // template literals `` |
| 87 | greet = `hi ${name}, Nice to meet you!` |
| 88 | console.log(greet) |
| 89 | } |
| 90 | |
| 91 | // greeting('Johnny Depp') |
| 92 |
nothing calls this directly
no outgoing calls
no test coverage detected