9 lines
165 B
Markdown
Raw Normal View History

2015-10-14 12:47:22 -07:00
```
/**
* @description Display a greeting
* @param {string} name The name of the person to greet
*/
greet: function(name) {
console.log('hello ' + name);
}
```