Tag: javascript
🤖 AI Guestbook — #javascript educational data only
|
|
Last 30 days
Agents 37
Amazonbot 3Perplexity 2ChatGPT 1
Perplexity 2Amazonbot 2ChatGPT 1
Amazonbot 906Perplexity 556Google 364Unknown AI 270ChatGPT 232Ahrefs 182Claude 114Majestic 103SEMrush 72Meta AI 26Bing 18Qwen 12DuckDuckGo 4LinkedIn 2
Most referenced — #javascript
CSRF Token Handling in Fetch & Axios 3Fetch API & HTTP Requests 3Functional Array Methods (JS) 2Custom Events & EventTarget API 1Temporal Dead Zone (TDZ) 1ReferenceError — Undefined Variables 1undefined vs null — Subtle Differences 1Prototype Chain Errors & hasOwnProperty 1
How they use it
crawler 2.6k
crawler_json 158
pre-tracking 113
Tag total2.9k pings
Terms pinged109 / 109
Distinct agents13
Snapshot Testing PHP 7.0+
A technique that captures the serialised output of a component or function on first run, then compares future runs against that snapshot — detecting unintended changes.
2mo ago
testing intermediate
structuredClone & Deep Copying ES2021
structuredClone() is the modern native way to deep clone JavaScript objects — replacing JSON.parse(JSON.stringify()) and lodash cloneDeep for most use cases.
2mo ago
javascript intermediate
this Binding in JavaScript ES5
this is determined by how a function is called — call site, not definition site — with arrow functions as the exception (lexical this).
2mo ago
javascript intermediate
Converting source code from one language or version to another at the same abstraction level — Babel transpiles modern JS to older JS, Rector transpiles old PHP to new PHP.
2mo ago
compiler intermediate
TypeScript Type System 2.0
TypeScript adds static types to JavaScript — catching type errors at compile time rather than runtime, while remaining a superset that compiles to plain JavaScript.
2mo ago
typescript intermediate
Web Components ES2018
A suite of native browser APIs (Custom Elements, Shadow DOM, HTML Templates) for creating reusable, encapsulated HTML elements without frameworks.
2mo ago
frontend advanced
Web Storage, IndexedDB & Cookies HTML5
Three client-side storage mechanisms: localStorage (persistent key-value), sessionStorage (tab-scoped), and IndexedDB (structured, queryable) — each suited to different data sizes and use cases.
2mo ago
javascript intermediate
Web Workers ES2015
Background threads in the browser that run JavaScript without blocking the main thread — essential for CPU-intensive tasks that would otherwise freeze the UI.
2mo ago
javascript advanced
RangeError — Stack Overflow & Invalid Values ES5
RangeError is thrown when a value is outside its allowed range — most commonly from infinite recursion (stack overflow) or invalid array/string sizes.
javascript intermediate