11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
// #docregion
|
|
/**
|
|
* @description This function returns a string.
|
|
*
|
|
* @returns {string} This string has the value 'Hello World'.
|
|
*/
|
|
|
|
|
|
function helloWorld() {
|
|
return 'Hello World';
|
|
} |