2015-11-04 10:47:05 +00:00

181 B

/**
 * @description This function returns a string.
 *
 * @returns {string} This string has the value 'Hello World'.
 */

 
function helloWorld() {
  return 'Hello World';
}