Essays, playbooks, and notes.
Javascript Essentials
Object-oriented programming is simply a programming pattern that is based on the concept of different types of objects and their properties. Now, mostly all programming languages support OOP, but in this article, we would look into key characteristics of OOP in javascript and I would ensure to exemplify using simple examples. We would take a look at two key OOP principles: inheritance and polymorphism on-base level in the sense of how it actually relates to javascript code, using the core characteristics of OOP in javascript to exemplify these principles...
The Document Object Model known as the DOM is basically a structured representation of the HTML document it can be thought of as a tree of nodes or elements created by the browser, the DOM is object-oriented meaning each node has a set of values and properties that can be changed and we can use Javascript to manipulate these DOM elements/nodes.
Javascript Essentials
Local Storage is a property that allows JavaScript sites and apps to save key-value pairs in a web browser with no expiration date. This means the data stored in the browser will persist even after the browser window is closed.
Javascript Essentials
...“Product management is an organizational function within a company dealing with a “product development(planning, business justification, verification… )”, a product manager is someone that sits between multiple areas of the establishment and acts as a communications hub, organizer and enabler for everyone else(engineers, designers e.t.c). basically responsible for the ultimate success of the product”....
Product Management in 5 minutes
Do you work in tech or elsewhere, do you have a rather vague or incorrect idea about what this fairly common term means. Well, I’m an apprentice in the field of tech, and Yes! I used to have both incorrect and vague ideas about the term API at a certain point in time, but...
When designing with CSS, you may notice that there are various measurement unit options for sizing, allowing you to choose PX, REM, EM, %, VH, or VW. But what do these options actually mean, and when should you use one over another?