Skip to content

Instantly share code, notes, and snippets.

//good
function write(writer, bookName){
console.log(writer+"작가님의 " + bookName);
}
//bad
function func(a, b){
console.log(a+"작가님의 " + b);
}