komalwebdev.hashnode.devFunction Declaration vs Function Expression: What’s the Difference?1.What functions are and why we need them Functions are reusable blocks of code used to perform a specific task. Functions are a set of instructions bundled together to achieve a specific outcome. 1h ago·2 min read
komalwebdev.hashnode.devArray Methods You Must Know1. Array.push( ) Array.push( ) adds an element to the end of an array. An array is a mutable object in JavaScript meaning that the original array can be mutated or changed after it has been created. 2h ago·4 min read
komalwebdev.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionCSS selectors CSS Selectors are patterns used in CSS to select and target HTML elements so that styles can be applied to them. They define which elements on a web page should receive specific styling rules. Used to select HTML elements based on tag ...Jan 30·3 min read
komalwebdev.hashnode.devUnderstanding HTML Tags and ElementsWhat HTML is and why we use it? HTML (HyperText Markup Language) is a form of programming code used to instruct a browser to create the structure for individual web pages on a website. It is a markup language, not a programming language. HTML is r...Jan 30·3 min read
komalwebdev.hashnode.devTCP Working: 3-Way Handshake & Reliable CommunicationTransmission Control Protocol (TCP) TCP (Transmission Control Protocol) is a protocol that allows devices to communicate reliably over a network. It ensures that data reaches the destination correctly and in the right order, even if parts of the netw...Jan 27·4 min read