2015-10-14 12:47:22 -07:00
|
|
|
```
|
2015-08-03 17:45:58 -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
|
|
|
}
|
|
|
|
```
|