MCPcopy Create free account
hub / github.com/CleverProgrammers/JavaScript-Course-by-Clever-Programmer- / greeting

Function greeting

playground.js:84–89  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

82// sayMyName2('Kevin')
83
84function 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected