Skip to content

Instantly share code, notes, and snippets.

@gogotr-hub
Created February 20, 2022 18:32
Show Gist options
  • Save gogotr-hub/55f35ad5f60b44226796b4eae2064b99 to your computer and use it in GitHub Desktop.
Save gogotr-hub/55f35ad5f60b44226796b4eae2064b99 to your computer and use it in GitHub Desktop.
//good
function write(writer, bookName){
console.log(writer+"작가님의 " + bookName);
}
//bad
function func(a, b){
console.log(a+"작가님의 " + b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment