코드 주석은 코드 자체보다 더 중요하다고 할 수 있습니다. 다음은 코드에 작성하는 주석이 친근한지 확인하는 몇 가지 방법입니다.
독자가 이미 알고 있는 내용을 반복하지 마세요.
코드의 기능을 명확하게 설명하는 주석은 유용하지 않습니다. 우리에게 도움이 되었습니다.
// If the color is red, turn it green if (color.is_red()) { color.turn_green(); }
추론과 역사를 설명하기 위해 주석을 달아야 합니다
코드의 비즈니스 로직을 향후 업데이트하거나 변경해야 할 경우 주석을 남겨야 합니다 :) 🎜>
/* The API currently returns an array of items even though that will change in an upcoming ticket. Therefore, be sure to change the loop style here so that we properly iterate over an object */ var api_result = {items: ["one", "two"]}, items = api_result.items, num_items = items.length; for(var x = 0; x < num_items; x++) { ... }
function Person(name) { this.name = name; this.first_name = name.split(" ")[0]; // This is just a shot in the dark here. If we can extract the first name, let's do it }
if (person.age < 21) { person.can_drink = false; // 21 drinking age /* Fees are given to those under 25, but only in some states. */ person.has_car_rental_fee = function(state) { if (state === "MI") { return true; } }; }
if (person.age >= 21) { person.can_drink = true; // A person can drink at 21 person.can_smoke = true; // A person can smoke at 18 person.can_wed = true; // A person can get married at 18 person.can_see_all_movies = true; // A person can see all movies at 17 //I hate babies and children and all things pure because I comment too much }