RARafe Ahmadinahmadrafe.hashnode.dev·Feb 8, 2023 · 3 min readJavaScript FunctionJavaScript function allows us to define a block of code, give it a name, and execute it as often as we want. Suppose we have to write same code and logic, again and again, this is not a good practice in JavaScript, We should avoid repeatability and f...00
RARafe Ahmadinahmadrafe.hashnode.dev·Jan 17, 2023 · 1 min readPrototype & Prototype ChainingPrototype JavaScript is a prototype-based language. In a simple sentence, we understand prototype that all JavaScript objects inherit properties and methods from a prototype. Every function and object has a property named "prototype" by default in Ja...00
RARafe Ahmadinahmadrafe.hashnode.dev·Jan 13, 2023 · 5 min readJavaScript Array MethodsArray In simple words, we can say array is a collection of elements or data. An array is a single variable that stores multiple elements in JavaScript. An array is a non-primitive data type. You can store all data types in an array. For example, numb...00
RARafe Ahmadinahmadrafe.hashnode.dev·Jan 7, 2023 · 5 min readJavaScriptWhat is JavaScript - JavaScript is a programming language. It is also known as a scripting language used primarily by web browsers to create a dynamic and interactive experience for the user. JavaScript allows users to interact with content in many i...00
RARafe Ahmadinahmadrafe.hashnode.dev·Dec 12, 2022 · 4 min readCSS SelectorsSo first we will know what is selector and how it works in CSS. The selector is the first and most important role in CSS. CSS Selectors target the HTML elements according to their id, class, attribute, etc, and help us to style the webpage according ...00