Adhiraj Kinlekaradhirajkinlekar.hashnode.dev·Nov 2, 2023Four Pillars of Object-Oriented Programming in JavascriptObject Oriented Programming Object-Oriented Programming (OOP) is a programming paradigm that allows you to model and structure your code using objects and classes. JavaScript is not a full-blown OOP language but you can still make use of OOP’s core p...Discuss·11 likes·61 readsObject Oriented Programming
John Vesterjohnjvester.hashnode.dev·Sep 28, 2023Simplifying Blockchain Development by using AbstractionBlockchain has the potential to revolutionize the way we interact with the digital world. It promises security, transparency, and decentralization. However, for most people, getting started with blockchain can be confusing and intimidating. The need ...DiscussWeb Development
sai sri vinay reddy sangam 🇮🇳forSolidity30solidity30.hashnode.dev·Sep 12, 2023Function modifiers in SolidityIn general, there are access modifiers in well known programming languages like Java, .Net to restrict the visibility or accessibility of functions, variables etc.. They are defined using the keywords like public, private, protected, internal... Simi...DiscussSolidity
Joseph Itacodeflakes.hashnode.dev·Sep 1, 2023Indirection Demystified: A Programmer's GuideIn programming, Indirection refers to the process of accessing data indirectly through a reference or pointer, rather than directly through its actual location in memory. This flexibility can do great wonders in making your code reusable and modular....Discuss·10 likes·72 readsSoftware Engineering
Sparshedsparshed.hashnode.dev·Aug 25, 2023encapsulation and abstraction CANNOT be used interchangeablyIn the past, I've often gotten confused about what sets encapsulation apart from abstraction. Both seem to be doing some level of information hiding but I never truly got the difference. Also, I often came across the usage of these words in books and...Discuss·55 readsOOPS
Shahima Firoz khan.shahimafiroz.hashnode.dev·Aug 21, 2023Brief Overview Of OOPIntroduction The four main core concepts in object-oriented programming are Abstraction: Simplify complex reality by focusing on essential attributes and behaviours while hiding unnecessary details. Encapsulation: Bundle data and methods that ope...Discuss·10 likesObject Oriented Programming abstraction
Lucas Akira Ayabelucas-ayabe.hashnode.dev·Aug 10, 2023Orientação a Objetos - IntroduçãoA orientação a objetos é um paradigma amplamente utilizado. Certamente se você é ou almeja ser um programador já se deparou ou ainda vai se deparar com este assunto, que é bem complexo, sendo motivo de diversos debates até hoje. Seja você um defensor...DiscussAprendendo orientação a objetosObject Oriented Programming
Ankit Bajpaiankitbajpai1607.hashnode.dev·Aug 6, 2023Understanding Object-Oriented Programming (OOP) ConceptsObject-Oriented Programming (OOP) is a powerful paradigm that allows developers to model real-world entities and their interactions in software systems. JavaScript, a versatile and widely used programming language, fully supports OOP principles throu...Discuss·28 readsencapsulation
Luis Patinoluispatino.hashnode.dev·Jul 31, 2023Abstract FunctionsFUNCTIONS! Functions are the most important unit of code in Javascript. And this is where I had trouble with the rules that come with JavaScript. What are these parenthesis and what do they do? Also learning that a function is an abstract, kind of li...Discussfunctions
Sahil Akhtarsahilfrodo.hashnode.dev·Jul 28, 2023Demystifying Expressions: The Foundation of Programming LanguagesIntroduction: In the realm of computer programming, expressions serve as the fundamental building blocks that represent computations and control flow within a program. Understanding the nature and classifications of expressions is vital for every pro...Discuss·141 readsprogramming fundamentals