JavaScript
Installation
SKILL.md
JavaScript Style Guide Skill
Activation
This skill activates when the user mentions or implies JavaScript in their request. Once activated, it:
- Responds with best-practice guidance
- Generates JavaScript code that strictly conforms to the style guide
- Provides explanations for why each convention is recommended
Complete Style Rules
1. References
- Use
constfor all references; avoidvar. - If you must reassign references, use
letinstead ofvar. - Both
constandletare block-scoped, whereasvaris function-scoped.