javascript
Installation
SKILL.md
What I do
- Write modern JavaScript (ES6+)
- Handle async operations with promises and async/await
- Use array methods (map, filter, reduce)
- Work with objects and arrays
- Handle DOM manipulation
- Use modules and imports
- Implement error handling
When to use me
When building web applications or server-side code with Node.js.
Variables & Types
// Let and const
const PI = 3.14159;
let count = 0;
// Template literals
const greeting = `Hello, ${name}!`;