12 lines
181 B
Markdown
Raw Permalink Normal View History

2015-10-14 12:47:22 -07:00
```
/**
* @description This function returns a string.
*
* @returns {string} This string has the value 'Hello World'.
*/
function helloWorld() {
return 'Hello World';
2015-10-14 12:47:22 -07:00
}
```