Web APIs
Everything on SkillVeris tagged Web APIs — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 1 library
Interview Questions(5)
What is the DOM?
The DOM (Document Object Model) is a tree-structured, in-memory representation of an HTML or XML document that browsers build from parsed markup, letting JavaS…
IndexedDB vs localStorage vs Cookies: When Do You Use Each?
Cookies are small, automatically sent-with-every-HTTP-request key-value pairs meant for server-visible state like session identifiers, localStorage is a synchr…
How Does the HTML5 Drag and Drop API Work?
The HTML5 Drag and Drop API lets any element with draggable="true" be picked up and moved via a sequence of drag events (dragstart, dragover, drop, and others)…
How Does the Web Clipboard API Work?
The asynchronous Clipboard API (navigator.clipboard) lets web pages read from and write to the system clipboard via promise-based methods like writeText() and…
How Does the Geolocation API Work in the Browser?
The Geolocation API is a browser-provided interface that asks the user for permission and then returns the device coordinates, either once via getCurrentPositi…