Skip to content

Instantly share code, notes, and snippets.

@lukemartin
Created July 8, 2011 06:52
Show Gist options
  • Save lukemartin/1071273 to your computer and use it in GitHub Desktop.
Save lukemartin/1071273 to your computer and use it in GitHub Desktop.
JavaScript: Method comments
/**
* Description of the method
* @param {Object} param1 description of object
* @param {String} param2 description of string
* @param {Int} param3 description of integer
*/
var something = function(param1, param2, param3) {
return;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment