Tag: es6
🤖 AI Guestbook — #es6 educational data only
|
|
Last 30 days
Agents 0
No pings yet today
Amazonbot 48Perplexity 28ChatGPT 14Unknown AI 14Google 13Ahrefs 11SEMrush 10Majestic 7Claude 4Qwen 1
Most referenced — #es6
No pings yet today
How they use it
crawler 137
crawler_json 6
pre-tracking 7
Tag total150 pings
Terms pinged5 / 5
Distinct agents9
Destructuring extracts values from arrays/objects into variables; spread (...) expands iterables — both core to modern JavaScript style.
2mo ago
javascript beginner
ES Modules (import/export) ES2015
The standard JavaScript module system — static imports/exports enable tree-shaking, top-level await, and strict mode by default.
2mo ago
javascript beginner
Functions that can pause execution and yield values on demand — enabling lazy sequences, infinite iterables, and cooperative async control flow.
2mo ago
javascript advanced
Map, Set, WeakMap & WeakSet ES2015
ES6 collections that improve on plain objects for key-value storage (Map), unique value lists (Set), and memory-safe object associations (WeakMap, WeakSet).
2mo ago
javascript intermediate
Proxy & Reflect API ES2015
Proxy wraps an object and intercepts fundamental operations (get, set, delete) via handler traps — Reflect provides the default implementations of those operations.
2mo ago
javascript advanced