fundamentals

Installation
SKILL.md

JavaScript Fundamentals Skill

Quick Reference Card

Variable Declaration

const PI = 3.14159;     // Immutable binding (preferred)
let count = 0;          // Reassignable
var legacy = "avoid";   // Function-scoped (avoid)
Installs
3
GitHub Stars
1
First Seen
Feb 7, 2026
fundamentals — pluginagentmarketplace/custom-plugin-javascript