javascript
Installation
SKILL.md
Google JavaScript Style Guide
Official Google JavaScript coding standards for ES6+ code.
Golden Rules
- Use
constby default —letonly when reassignment needed, nevervar - Arrow functions for callbacks — traditional functions for methods
- Template literals for string interpolation
- Destructuring where it improves readability
- Named exports over default exports
- JSDoc for public APIs — document parameters and return types
- 2-space indentation — consistent formatting