Skip to content

Instantly share code, notes, and snippets.

@kerryChen95
Created March 28, 2013 17:20
Show Gist options
  • Save kerryChen95/5265103 to your computer and use it in GitHub Desktop.
Save kerryChen95/5265103 to your computer and use it in GitHub Desktop.
function mul (a) {
return a * a;
}
console.log( mul.toString() );
/*
output:
function mul(a) {
return a * a;
}
*/
// It's useful! But depend on you. :P
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment