Skip to main content

57 docs tagged with "Paradigm"

View All Tags

__proto__

__proto__ is defined as: [[ ]] property on all objects, link to Constructor Function. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Pr

Abstraction

Abstraction is defined as: (Paradigm) to ignore/hide Low-Level details to focus on implement. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm,

Anonymous Class Expression

Anonymous Class Expression. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal Inheritance, Class, Class Expression|web-Dev Wiki

C

C is defined as: Low-Level General-Purpose Programming Language with Imperative Procedural Programming Paradigm. Topics on: . Read more: Computer Science, Compu

Callback Hell

Callback Hell is defined as: Deep nested Callback Function Spaghetti Code. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Spaghetti Code, Ca

CD

CD is defined as: (Paradigm) to frequently push code out to customers faster. Topics on: . Read more: Computer Science, Design Pattern, Dev Ops, CD, Paradigm

CI

CI is defined as: (Paradigm) to frequently Merge in small maintable chunks via CI Server. Topics on: CI Server. Read more: Computer Science, Design Pattern, Dev

class

class is defined as: JS Keyword to declare Class (as Syntactic Sugar over Constructor Function). Topics on: class is more compact JS Syntax to set up Prototype

Class

Class is defined as: Blueprint to create Object Instance. Topics on: Instantiation. Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Classical OOP Con

Class Expression

Class Expression. Topics on: Anonymous Class Expression, Named Class Expression. Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal Inheritan

Component Based Architecture

Component Based Architecture is defined as: (Paradigm) to visualize UI as Component to architect (DOS) App. Topics on: DOS, Component. Read more: React, React C

Component-Driven

Component-Driven is defined as: Paradigm to build UI bottom up from basic to assembly. Topics on: Atomic Design, Atomic Component. Read more: Computer Science,

Concern

Concern is defined as: logic/purpose of Program. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Separation Of Concerns, Concern, Program

constructor()

constructor() is defined as: special class Method to pass Argument & setup new new Instance. Topics on: define class via constructor, super. Read more: JS, JS C

Declarative

Declarative is defined as: (Paradigm) to express logic w/o explicit Control Flow via Abstraction. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Parad

Decomposition

Decomposition is defined as: Factoring; Paradigm stragegy for organizing Program by breaking down complex system into simpler parts. Topics on: structured analy

Dependency Hell

Dependency Hell is defined as: of project with clusterfuck Dependency or ver compat issue Spaghetti Code PAIN to run/migrate, stuck with outdated code. Topics o

DevOps

DevOps is defined as: (Paradigm) to iterate faster TBD smaller steps via CI/CD integration, push code ASAFP. Topics on: TBD, CI, CD. Read more: Computer Science

Encapsulation

Encapsulation is defined as: (Paradigm) to pack properties & methods into component, to keep private and restrict access (unless expose via API). Topics on: Typ

extends

extends. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal Inheritance, Class, Extends|FullStack Wiki by Roger J

Functional Programming

Functional Programming is defined as: (Paradigm) to construct Program as MCF (Modular Programming Composable). Topics on: MCF, Pure Function, Side Effect. Read

Imperative

Imperative is defined as: (Paradigm) to express logic with explicit Control Flow via step-wise instructions. Topics on: contrast Declarative which asks 'what',

implementing custom static Methods

implementing custom static Methods. Topics on: define Method as property Object Literal, prepend static JS Keyword to class Methods. Read more: JS, JS Concepts,

Inheritance

Inheritance is defined as: (Paradigm) to share properties & methods of parent class to child classes. Topics on: Inheritance allows reuse of logic & model of re

Instance

Instance is defined as: Object created through a class or Constructor Function. Topics on: Methods are copied from class to all Instances. Read more: JS, JS Con

Instance Method

Instance Method is defined as: Method to Prototypal Inheritance via __proto__. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypa

Instance Private Field

Instance Private Field is defined as: class field property with # prefix to store privately within Instance. Topics on: . Read more: JS, JS Concepts, Multi Par

Instantiation

Instantiation is defined as: (process) to create new Object Instance from class. Topics on: Instance. Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP,

MCF

MCF is defined as: Modular Composable Functions. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Functional Programming, MCF | FullStack Wiki

Microservices

Microservices is defined as: cloud-native Functional Programming Paradigm to architect App by split functions into Containerize service to deploy as Online API.

Modular Programming

Modular Programming is defined as: Ground-up approach of assembling individual modules. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Imper

Multi-paradigm

Multi-paradigm is defined as: (property) Programming Language flexible & versatile, to allow multiple Paradigm to pick & choose from. Topics on: Paradigm, High-

Named Class Expression

Named Class Expression. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal Inheritance, Class, Class Expression | FullStack Wiki

No-Code

No-Code is defined as: (Paradigm) buzzword trend to separate Business Logic from hand-coding skill, via WYSIWYG Dev tool. Topics on: WYSIWYG. Read more: JS, JS

Object

Object is defined as: self-contained code with collection of properties, to model real-world/abstract features & relationships. Topics on: . Read more: JS, JS C

OOP

OOP is defined as: Paradigm to organize & structure data as Object. Topics on: Object, Abstraction, Encapsulation, Inheritance, Polymorphism, Prototypal Inherit

Paradigm

Paradigm is defined as: approach/mindset of coding style, structure & technique to write Source Code. Topics on: Paradigm subdivide as Imperative or Declarativ

Polymorphism

Polymorphism is defined as: (Paradigm) Child class can overwrite inherit property/method. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP

Procedural Programming

Procedural Programming is defined as: (Paradigm) Imperative subset to split Program into smaller sub-tasks (Procedure). Topics on: Procedure. Read more: JS, JS

Procedure

Procedure. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Imperative, Procedural Programming, Procedure|FullStack Wiki by Roger J

Prop Drilling

Prop Drilling is defined as: to pass props through deep Component Hierarchy Spaghetti Code. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, S

Prototypal Inheritance

Prototypal Inheritance is defined as: Link for all Object to their Prototype, to mimic Inheritance access to Method & props. Topics on: JS does not have real 'C

Prototype

Prototype is defined as: Model blueprint Object to Prototypal Inheritance methods & properties, link via __proto__, to mimic 'classical' OOP Inheritance. Topics

Prototype Chain

Prototype Chain is defined as: Series of links to connect Object to Prototype; to mimic Inheritance. Topics on: when call method/property not exist directly on

Pure Function

Pure Function is defined as: Function with fixed input & same output, no Side Effect. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Functio

React Concepts

React Concepts is defined as: Definitions on React Concepts, Paradigm & Comparisons to other frameworks. Topics on: Minimalist, High Compat, Declarative, Unidir

REST

REST is defined as: (standard)(model)(Paradigm) Request-Response model to organize stateless Caching Data Fetch. Topics on: REST is logical way to build APIs to

Separation of Concerns

Separation of Concerns is defined as: (Paradigm) to Encapsulation (Software) into dintinct modular sections vs purpose/logic. Topics on: Concern. Read more: JS,

Side Effect

Side Effect. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Functional Programming, Side Effect|FullStack Wiki by Roger J

Spaghetti Code

Spaghetti Code is defined as: Messy Source Code with obfuscated Semantic ๐Ÿœ๐Ÿ‘จโ€๐Ÿ’ป. Topics on: Callback Hell, Wrapper Hell, Prop Drilling, Dependency Hell. Read m

static

static is defined as: JS Keyword to define Static Method/property for class. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal

Static Method

Static Method is defined as: Method attach to Constructor Function (NOT Prototypal Inheritance via __proto__). Topics on: static, Instance Method, Array.from(),

Structured Programming

Structured Programming is defined as: Subset of Imperative Paradigm organise code by specific control structures. Topics on: control structure for sequences, se

Subclass

Subclass is defined as: child class extends class. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal Inheritance, Class, Extend

WYSIWYG

WYSIWYG is defined as: What You See Is What You Get. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, No Code, WYSIWYG|FullStack Wiki by Roger