Mikeydraken.hashnode.dev·13 hours agoClasses vs Interfaces in TypeScript - What's the Difference?Classes and interfaces are fundamental building blocks in TypeScript. While they have some similarities, they serve different purposes. This post explains the key differences between classes and interfaces in TypeScript with examples. Why Classes and...Discussclasses
Usman Akinyemiuniqueusman.hashnode.dev·Sep 20, 2023"Understanding basic Programming concept: Types, Data Types, Data Item, Classes, Objects, Method, ADTs, and Data Structures Explained."In the world of programming, several fundamental concepts are crucial to understand. Types, data types, ADT, data items, class methods and Objects are often used interchangeably, but they have distinct meanings and roles. In this blog post, we'll div...Discuss·1 likeProgramming basics
Andrew Dassandrewdass.hashnode.dev·Sep 15, 2023How to Make and Use Classes in PythonOverview This article will explain how to make classes in Python, the advantages of using them and define other terminology related to classes. Materials Computer Python Terminal or IDE Making a Class To initialize a class in Python, write "clas...DiscussPython
Erich Buelowerichbuelow.com·Sep 14, 2023Benfits of Classes in JavaScriptJavaScript and TypeScript are versatile programming languages that allow developers to approach problems in various ways. One of these approaches involves using classes, which provide a structured and organized way to define and create objects. Here,...DiscussTypeScript
Juwon oladele walk.hashnode.dev·Sep 11, 2023A complete guide to Object-Oriented Programming (OOP) in JavaScript.Introduction This article contains the core concepts of OOP. Everything you need to understand this powerful paradigm is here. You’ll explore concepts like encapsulation, polymorphism, and inheritance. Prerequisite To get a good read of this article,...Discuss·15 likes·97 readsJavaScript
Kartik Sharmakartiksharmacoder.hashnode.dev·Sep 2, 2023Objects and Classes in Java LanguageJava classes and objects will be covered on this page. We create programs utilizing objects and classes while using object-oriented programming techniques. In Java, an object is both a physical and a logical thing, whereas a class is a logical entity...Discuss·1 likeObjects
Joydip Pauljoydip.hashnode.dev·Aug 30, 2023বেম পদ্ধতি (BEM methodology)BEM (Block,Element,Modifier) এই পদ্ধতি ওয়েব ডেভেলপমেন্টে খুবই জনপ্রিয়। এটি আসলে সিএসএস (CSS) এর ক্লাস নেইম লিখার একটি পদ্ধতি যা একটি প্যাটার্নে লিখা হয়। এই প্যাটার্নকেই মূলত বেম পদ্ধতি বলা হয়। ছোট প্রজেক্টের ক্ষেত্রে বেম ব্যবহার না করলেও বড় প্রজেক্ট...Discuss·30 readsHTML5
Shakhzod Tojiyevshakhzodtojiyev.uz·Aug 16, 2023Python3-da OOP (Object Oriented Programming) tushunchalariPython-da ob'ektga yo'naltirilgan dasturlashga kirish! Python-da hamma narsa ob'ektdir. Ob'ektning holati va metodlari mavjud. Ob'ektni yaratish uchun avval siz sinfni aniqlaysiz. Sinfdan foydalanib siz bir yoki bir nechta ob'ektlarni yaratishingiz ...Discussoop
Sreejit Senguptosreesen.hashnode.dev·Aug 9, 2023Introduction to Object Oriented Programming in Java (Object and Classes)Introduction👋🏻 Object Oriented Programming is a powerful programming principle that revolves around the concept of "objects". It provides a structured way to design, organize, and maintain code by modelling real-world entities as objects, each with...Discuss·39 readsObject Oriented Programming in Javaoop
Joseph Afolabijosephafolabi.hashnode.dev·Aug 3, 2023Python Class InheritanceInheritance is a programming method that models the relationship that exists between parents and children. A child class inherits variables, methods, and other parameters from an existing class that is a parent class. With the help of the concept of ...Discuss·12 likes·35 readsPython