data-structures

Installation
SKILL.md

Data Structures Skill

Quick Reference Card

Object Operations

// Create
const obj = { name: 'Alice', age: 30 };

// Access
obj.name;           // Dot notation
obj['name'];        // Bracket notation
obj?.address?.city; // Optional chaining

// Modify
obj.email = 'a@b.com';       // Add/update
delete obj.age;              // Remove
const { name, ...rest } = obj; // Destructure
Installs
7
GitHub Stars
1
First Seen
Jan 25, 2026
data-structures — pluginagentmarketplace/custom-plugin-javascript