Keunyoung Songmapotofu.hashnode.dev·May 29, 2024Reactive Programming(반응형 프로그래밍)이란?위키피디아에 따르면, In computing, reactive programming is a declarative programming paradigm concerned with data streams and the propagation of change. With this paradigm, it is possible to express static (e.g., arrays) or dynamic (e.g., event emitters) d...TILReactive Programming
Dhruv Uniyaldhruv12.hashnode.dev·Oct 7, 2023Introduction to Object Oriented Programming (1/3)Object Oriented Programming (or OOP in short) is a programming paradigm that emphasizes the reusability of code. In this article, we take a look at what the various programming paradigms are and develop our understanding of how OOP is used to write c...3 likes·40 readsObject Oriented Programming
Pavel Romanovpavel-romanov.com·Sep 22, 2023Differences between declarative and imperative programmingThere are two main paradigms in programming: imperative and declarative. Every other paradigm, such as reactive, functional, and procedural, is just a subset of one of these two. Often, you hear that declarative code is better than imperative code an...132 readsDeclarative vs. Imperative Programming
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·May 11, 2023JS: Imperative ProgrammingImperative programming is a programming paradigm that specifies a step-by-step sequence of instructions to solve a problem. It is also known as procedural programming, which was invented to improve the efficiency and organization of program code. In ...JavaScript Fundamentalscontrol flow