AKAbhijeet Karmakarinabhijeet15.hashnode.dev·Aug 16, 2024 · 5 min readDocument Object Model (DOM)What is DOM? The Document Object Model (DOM) is the data representation of the objects that comprise the structure and content of a document on the web. It represents the page so that programs can change the document structure, style, and content. Th...00
AKAbhijeet Karmakarinabhijeet15.hashnode.dev·Aug 13, 2024 · 4 min readHTML & CSS ConceptsHTML (HyperText Markup Language) 1. Basic Structure Doctype: Defines the document type and version of HTML. Example: <!DOCTYPE html>. HTML Element: The root element (<html>) that contains the entire document. Head Section: Includes metadata, title, ...00
AKAbhijeet Karmakarinabhijeet15.hashnode.dev·Jul 22, 2024 · 7 min readAsynchronous JavaScriptAsynchronous JavaScript JavaScript Code Execution JavaScript engines consist of two main components: the heap and the function call stack. Additionally, there is a callback queue, a microtask queue, web APIs/Node APIs, and the event loop. When JavaSc...00
AKAbhijeet Karmakarinabhijeet15.hashnode.dev·Jun 26, 2024 · 3 min readAll About GitAll About Git What is Git? Git is distributed version control system used for tracking versions of your files. It is a free and open-source software which helps programmers effectively collaborate while developing a software. Git was created for use ...00
AKAbhijeet Karmakarinabhijeet15.hashnode.dev·Jun 25, 2024 · 5 min readWhy Command Line Interface is so powerful?Command Line Interface (CLI) What is Command Line Interface (CLI)? A command line interface (CLI) is a software mechanism you use to interact with your operating system using your keyboard. Another mechnism which is widely used in all applications an...00