返回 Skill 列表
extension
分类: 开发与工程无需 API Key

clean-codejs-comments

提高可读性和可维护性的注释模式。

person作者: jakexiaohubgithub

Clean Code JavaScript – Comment Patterns

Table of Contents

  • When to Comment
  • When Not to Comment
  • Examples

When to Comment

  • Explain why, not what
  • Document complex business rules

When Not to Comment

  • Obvious code
  • Outdated explanations

Examples

// ❌ Bad
// Increment i by 1
i++;

// ✅ Good
// Retry once to handle flaky network condition
retryRequest();