← CodeClarityLab Home
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — JavaScript educational data only
| |
Last 30 days
41 pings — 2026-04-08 W 8 pings — 2026-04-09 T 30 pings — 2026-04-10 F 47 pings — 2026-04-11 S 70 pings — 2026-04-12 S 17 pings — 2026-04-13 M 5 pings — 2026-04-14 T 4 pings — 2026-04-15 W 6 pings — 2026-04-16 T 31 pings — 2026-04-17 F 27 pings — 2026-04-18 S 59 pings — 2026-04-19 S 28 pings — 2026-04-20 M 5 pings — 2026-04-21 T 19 pings — 2026-04-22 W 42 pings — 2026-04-23 T 46 pings — 2026-04-24 F 79 pings — 2026-04-25 S 38 pings — 2026-04-26 S 16 pings — 2026-04-27 M 11 pings — 2026-04-28 T 21 pings — 2026-04-29 W 69 pings — 2026-04-30 T 61 pings — 2026-05-01 F 51 pings — 2026-05-02 S 35 pings — 2026-05-03 S 15 pings — 2026-05-04 M 6 pings — 2026-05-05 T 9 pings — Yesterday W 8 pings — Today T
Amazonbot 1
Amazonbot 2Google 1
Amazonbot 662Perplexity 459Google 315Unknown AI 241ChatGPT 193Ahrefs 132Majestic 99SEMrush 53Meta AI 18Qwen 7DuckDuckGo 4
crawler 2k crawler_json 100 pre-tracking 105
Category total2.2k pings Terms pinged95 / 95 Distinct agents10
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
async / await in JavaScript ES2017
async functions always return a Promise; await pauses execution inside an async function until a Promise settles — giving asynchronous code the readability of synchronous code without blocking the event loop.
4w ago javascript intermediate
ES Modules (ESM) ES2015
The official JavaScript module system — import and export statements enable static dependency graphs, tree-shaking, and native browser module loading without a bundler.
4w ago javascript intermediate
Fetch API ES2015
The browser-native Promise-based API for making HTTP requests — replacing XMLHttpRequest with a cleaner interface supporting streaming, CORS, and request/response objects.
4w ago javascript beginner
Memory Management in JavaScript
JavaScript uses automatic garbage collection — the engine reclaims memory when objects are no longer reachable. Memory leaks occur when references are unintentionally retained, preventing collection.
4w ago javascript intermediate
Array.flat() & Array.flatMap() ES2019
Array.flat(depth) flattens nested arrays; Array.flatMap() maps then flattens one level — more efficient than map().flat() and great for expanding items.
2mo ago javascript beginner
BigInt — Arbitrary Precision Integers ES2020
JavaScript's Number type cannot safely represent integers larger than 2⁵³−1 (Number.MAX_SAFE_INTEGER). BigInt is a separate numeric type that handles integers of arbitrary size, essential for working with 64-bit IDs from databases, cryptographic values, and precise financial calculations.
2mo ago javascript intermediate
BroadcastChannel — Cross-Tab Messaging HTML5
BroadcastChannel allows same-origin pages/tabs to communicate — post a message on one tab, receive it in all others — without a server or service worker.
2mo ago javascript intermediate
Canvas API — 2D Drawing HTML5
The HTML Canvas API provides a 2D drawing surface via JavaScript — used for charts, image manipulation, games, data visualisations, and any pixel-level rendering that DOM elements cannot efficiently handle.
2mo ago javascript intermediate
Clipboard API HTML5
The async Clipboard API (navigator.clipboard) is the modern replacement for document.execCommand('copy') — supports text, images, and rich content with proper permission handling.
2mo ago javascript beginner
Error.cause — Error Chaining ES2022
ES2022 added a cause option to the Error constructor — 'new Error('message', { cause: originalError })' — enabling proper error chaining where a high-level error wraps its underlying cause, preserving the full error context across abstraction layers.
2mo ago javascript beginner
EventSource API — Server-Sent Events (Client Side) HTML5
EventSource is the browser API for consuming Server-Sent Events (SSE) — a one-directional server-to-client stream over HTTP that automatically reconnects, ideal for live feeds, notifications, and streaming LLM responses.
2mo ago javascript intermediate
Geolocation API HTML5
navigator.geolocation provides GPS/network location data — requires HTTPS, user permission, and graceful fallback handling for denial or unavailability.
2mo ago javascript beginner
Import Maps ES2020
Import maps let browsers resolve bare module specifiers (import 'lodash') without a bundler — mapping module names to URLs in a JSON script tag.
2mo ago javascript intermediate
IntersectionObserver API HTML5
IntersectionObserver fires when an element enters or leaves the viewport — the modern way to implement lazy loading, infinite scroll, and scroll-triggered animations.
2mo ago javascript intermediate
MutationObserver API HTML5
MutationObserver watches DOM tree changes — attribute changes, child additions/removals, text content changes — without polling or event listener on each node.
2mo ago javascript intermediate
Object.freeze / Object.seal ES5
Object.freeze() prevents all property changes (add/modify/delete), Object.seal() prevents add/delete but allows modification — both are shallow, not deep.
2mo ago javascript intermediate
Page Visibility API HTML5
The Page Visibility API tells you when a tab is hidden or visible — use it to pause animations, polls, and video when the user switches tabs.
2mo ago javascript beginner
Permissions API HTML5
The Permissions API (navigator.permissions.query()) lets you check the current state of browser permissions — granted, denied, or prompt — before requesting sensitive APIs.
2mo ago javascript intermediate
Promise.allSettled / Promise.any / Promise.race ES2020
Three Promise combinators for handling multiple async operations — allSettled() waits for all to complete regardless of failure, any() resolves with the first success, race() resolves or rejects with the first to settle.
2mo ago javascript intermediate
requestAnimationFrame — Smooth Animations HTML5
requestAnimationFrame(callback) schedules a function to run before the browser's next repaint — the correct way to animate in JavaScript, producing smooth 60fps motion and automatically pausing when the tab is hidden.
2mo ago javascript intermediate
✓ schema.org compliant