21 lines
336 B
Markdown
Raw Normal View History

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