Source: 2.functions.js

/** Logs a custom greeting to the console in the form "Hello Avery!"
* @param {string} name - The name of the user to greet
* @returns {null}
*/
function logGreeting() {

}

/** Returns a custom greeting string in the form "Hello Avery!"
* @param {string} name - The name of the user to greet
* @returns {string} - The custom greeting
*/
function greeting() {

}

/** Adds a number to a global variable called globalCount
* @param  {number} val - The number to add to globalCount
* @returns {null}
* @modifies {globalCount}
*/
function incrementGlobalCount() {

}
/** Multiplies three numbers
* @param {number} firstNum - The first number
* @param {number} secondNum - The second number
* @param {number} thirdNum - The third number
* @returns {number} - The product of the three numbers
*/
function multiply() {

}

module.exports = {
  logGreeting,
  greeting,
  incrementGlobalCount,
  multiply
}