Skip to content

Instantly share code, notes, and snippets.

@bdunn313
Created January 8, 2018 14:57
Show Gist options
  • Save bdunn313/fd848cd5799d2edbf61de797322dc504 to your computer and use it in GitHub Desktop.
Save bdunn313/fd848cd5799d2edbf61de797322dc504 to your computer and use it in GitHub Desktop.
documenting-js-projects-basic-example
/**
* Adds two numbers together
*
* @param {number} first The First Number
* @param {number} second The Second Number
* @returns {number}
*/
function add(first, second) {
return first + second;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment