ASAreeb Sirajinareebsiraj007.hashnode.dev·Sep 14, 2022 · 6 min readClasses and Prototypes in JavaScriptA JavaScript class is a blueprint for creating objects. A class encapsulates data and functions that manipulate data. It determines what the properties of an object are and how it behaves. It was introduced in EcmaScript 2015 (ES6) Defining Class...00
ASAreeb Sirajinareebsiraj007.hashnode.dev·Sep 10, 2022 · 6 min readJavaScript Interview CheatsheetScope The scope is the current context of execution in which values and expressions are "visible" or can be referenced. If a variable or expression is not in the current scope, it will not be available for use. In simple words, a variable’s scope is ...00
ASAreeb Sirajinareebsiraj007.hashnode.dev·Jul 23, 2022 · 4 min readIntroduction to GitGIT Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. It is a DevOps tool used for source code management. Git is used to track changes in the s...00
ASAreeb Sirajinareebsiraj007.hashnode.dev·Jul 23, 2022 · 2 min readMarkdown Cheat SheetMarkdown is a lightweight markup language for creating formatted text using a plain-text editor. In an application like Microsoft Word, you click buttons to format words and phrases, and the changes are visible immediately. Markdown isn’t like that. ...00
ASAreeb Sirajinareebsiraj007.hashnode.dev·Jul 22, 2022 · 4 min read'Position' property in CSSWhile designing a webpage we all come across problems when we want a certain item at a certain position or position of an image with respect to something else. So in order to overcome such problems, there is a property in CSS known as Position. The p...00