Created
July 8, 2011 06:52
-
-
Save lukemartin/1071273 to your computer and use it in GitHub Desktop.
JavaScript: Method comments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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