Vishwajeet RajforVishwajeet Raj's Blogvishwajeetraj11.hashnode.net·May 1, 2022Deep Dive into Prototypal Inheritance in JavaScriptIntroduction Prototype Objects in JavaScript have an internal property known as prototype. It is simply a reference to another object and contains common attributes/properties across all instances of the object. An object’s prototype attribute speci...Eleftheria Batsou and 2 others are discussing this3 people are discussing thisDiscuss·182 likes·914 readsJavaScriptNice work Vishwajeet Raj :) 4
Faheem KhanforFaheem's Blogfaheemkhan97.hashnode.net·Aug 10, 2021OOP: Working with Classes in JavaScriptIntroduction OOP is a programming paradigm based on Objects. You can also say that It is a way to structure your program to make it more flexible and maintainable. Objects and Classes are the basic building blocks of OOP, so let's deep dive and unde...Tapas Adhikary and 11 others are discussing this12 people are discussing thisDiscuss·128 likes·4.1K readsJavaScriptGreat article. Developers need such handy info to enable them write performant Javascript. Thank you so much 10
Calvin TorraforCalvin Torra - Front End Devcalvin.hashnode.net·Jun 15, 2021Javascript Classes are harmfulA pretty bold statement but apparently a common feeling for seasoned Javascript developers. Javascript is pretty good at letting you code badly if you don't learn it properly! However, this also lets you pick up Javascript and create things pretty qu...Pankaj Patel and 4 others are discussing this5 people are discussing thisDiscuss·115 likes·1.2K readsJavaScript
Shubham Sharmaforshubhamsharma.hashnode.net·Apr 16, 2023Basics of object oriented programming:Object-oriented programming referred to the language that uses objects in programming. Oops, aim to implement real-world entities like inheritance, hiding, polymorphism etc... The main name of Oops is to bind the data members and the member function ...Discuss·1 likeC++
Arnab MannaforArnab's Blogarnabmannadev.hashnode.net·Apr 16, 2023Class Components vs Functional Components in React(Which is better for beginner)Class Components Class Components are the older way of defining React components. They are ES6 classes that extend React. Component class. Class components have a render() method that returns JSX (JavaScript XML) that describes what the component sho...Discuss·10 likes·92 readsReact
Karan ThakkarforKaran's blogkaransss.hashnode.net·Apr 14, 2023DataScience - OOPS Part-1'OOPS' stands for Object Oriented Programming System Firstly, comes classes. Classes are blueprint or skeleton or overall definition of OOPs things. Eg. If I say there is a car, and ask you to sit inside. Then you will ask which one? Because there ar...DiscussObject Oriented Programming
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 7, 2023Go: OOP PrinciplesObject-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which can contain data and code that operates on that data. In Go language, OOP is achieved using the concepts of struct and interface types. Implementatio...Discuss·32 readsGo Languagegolang
Ridwan Ibidunniforaljebra schoolaljebraschool.hashnode.net·Mar 5, 2023Introduction to classes, Objects, Methods and StringsIntroduction In the first part of this write-up, the concept of classes was introduced, and in this series, I will delve deeper into this topic by explaining the various components that make up a class. Java is an object-oriented programming (OOP) la...Discuss·44 readsLearn how to write Java programsJava
Matt NeighbourforbrainEmbeddedbrainembedded.hashnode.net·Mar 4, 2023Understanding Object-Oriented Programming: A Comprehensive GuideObject-oriented programming (OOP) is a programming paradigm that focuses on objects as the fundamental building blocks of software systems. In OOP, objects are instances of classes that encapsulate data and behavior, and interact with one another thr...DiscussObject Oriented Programming
Malavi Pandeformalavibolg.hashnode.net·Feb 24, 2023Ruby (part-10)Introduction Till now we only learned about simple concepts that are very easy to understand Hold on !! I make you understand easily through my blogs, Just kidding never mind :). Openly say whenever I reach this concept I feel like entering a new wor...Discuss·1 like·36 readsRuby
Fatima AliforDev tipsfa994.hashnode.net·Feb 15, 2023Introduction to GUI using PyQtPyQt is a Python library used for creating graphical user interfaces (GUIs) for desktop applications. It is a set of Python bindings for the Qt application framework, which is a popular and powerful C++ GUI toolkit used for building cross-platform ap...Discuss·1 like·43 readsPython
Oladayo OjoforDojo Infodayo0.hashnode.net·Feb 13, 2023Classes and Constructor Functions in JavaScriptA class is a function that helps to create multiple instances of similar objects. This is similar to constructor functions. Classes and Constructor functions are ways of writing reusable code useful when dealing with objects with similar variables. Y...Discuss·12 likes·56 readsclasses
Nathan Agbarafornathanagbara.hashnode.net·Feb 1, 2023Understanding Classes, Static and non-static Variables/Methods and Constructors in JavaTo fully understand any programming language, you need to understand the English language behind the programming language, Java is no different. This post will explain to you what classes, constructors and instances mean in Java. Let's get right in. ...Discuss·26 readsJava