9 lines
165 B
Markdown
9 lines
165 B
Markdown
|
```
|
||
|
/**
|
||
|
* @description Display a greeting
|
||
|
* @param {string} name The name of the person to greet
|
||
|
*/
|
||
|
greet: function(name) {
|
||
|
console.log('hello ' + name);
|
||
|
}
|
||
|
```
|