Skip to content

Instantly share code, notes, and snippets.

@thirdj
Created April 10, 2013 01:18
Show Gist options
  • Save thirdj/5350976 to your computer and use it in GitHub Desktop.
Save thirdj/5350976 to your computer and use it in GitHub Desktop.
javascript comment
/**
* 문자열을 반전시킨다.
*
* @param {String} 반전시킬 입력 문자열
* @return {String} 반전된 문자열
*/
var reverse = function (input){
//..
return output;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment