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

165 B

/**
 * @description  Display a greeting
 * @param {string} name The name of the person to greet
 */
greet: function(name) {
  console.log('hello ' + name);
}