SStarinadventure10.hashnode.dev·Oct 11, 2025 · 2 min readDom ApiWhat is DOM API The DOM API (Document Object Model API) is a core part of web development — it allows JavaScript to interact with, modify, and manipulate the structure and content of web pages dynamically. What is DOM The Document Object Model (DOM) ...00
SStarinadventure10.hashnode.dev·Oct 11, 2025 · 3 min readECMAScript ModulesWhat is ESM? ESM stands for ECMAScript Modules, which is the official standard for modular JavaScript defined in the ECMAScript specification (ES6/ES2015 and later). ESM allows you to split JavaScript code into separate files (modules) that can imp...00
SStarinadventure10.hashnode.dev·Sep 15, 2025 · 2 min readCSS OverlayCSS Overlay A CSS overlay is a styling technique where a semi-transparent layer is placed over an element—often an image or background—to dim it and make the foreground content, such as text, stand out more clearly. Overlay of an image A common use c...00
SStarinadventure10.hashnode.dev·Sep 14, 2025 · 3 min readCSS PositionCSS Position CSS position can be used to control the placement of elements within a web page. The position property can have these values: static - default relative fixed absolute sticky CSS position: static This is the default behavior. Eleme...00