Nishant Banjadeblog.nishantbanjade.com.np·Dec 17, 2024Mastering C# Part 7.1 Object Oriented ProgrammingObject-Oriented Programming (OOP) is a paradigm that structures software design around data, or objects, rather than functions and logic. In C#, a language inherently designed with OOP principles, this approach facilitates the modeling of real-world ...40 readsC#
GISBoxgisbox.hashnode.dev·Dec 16, 2024GISBox easily realizes OBJ to 3D Tiles conversion.In 3D data processing, OBJ files are a common 3D model file format, and 3DTiles, as a data format widely used by 3D platforms such as Cesium, has become a standard in the field of 3D visualization with its efficient streaming loading capabilities. If...GIS
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 11, 2024Introduction to Classes & Objects in JavaIn Java, object-oriented programming (OOP) allows developers to model real-world entities and their interactions. At the heart of OOP lies the class. A class serves as a blueprint for creating objects, which encapsulate both state and behavior. Imagi...3 likes·329 readsclasses
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...reference datatypes
Maneeshwar Karnekarne.hashnode.dev·Dec 5, 2024Object.assign() in JavaScriptIn the world of JavaScript, Object.assign() is the go-to method when you need to copy properties from one object to another. It’s efficient, straightforward, and just a little sneaky — but don’t worry, we’ll break it all down without overcomplicating...JavaScript
Ashikur Rahmanashikonweb.hashnode.dev·Nov 27, 2024How Browsers Work: What Happens When You Type a URL?You might think you already know how a browser works: type a URL, hit enter, the browser makes an HTTP request, the server responds, and the website loads—simple, right? Not quite! Behind the scenes, your browser is doing far more. It’s performing co...79 readsBrowsers
Nandan Kumarblog.nandan.dev·Nov 22, 2024Yet another blog on Call, Apply & Bind..!!Bla Bla Bla.. Okay, Hear me out..!! Hundreds of blogs and tutorials explain call, bind, and apply. Heck, even ChatGPT and Copilot can simplify them for you! So why another post? Well, this one’s not for you—it’s my self-note as I revisit JavaScript f...107 readsFront End - HTML, CSS & JavascriptJavaScript
Vinita Guptavinita-blog.hashnode.dev·Nov 5, 2024Understanding JavaScript Objects and Classes: A Simple GuideWhat is an Object? An object is a container, similar to an array, but slightly different. An array holds only one data type (like a list of numbers), while an object can hold multiple data types, including other objects. Think of an object like a war...2 likesObject Oriented Programming
Yasin Sarkaryasinsarkar.hashnode.dev·Nov 2, 2024🔍 Understanding Object.is() in JavaScript: A Comprehensive Guide 🎯In JavaScript, comparing values is an everyday task. We often use operators like == (loose equality) or === (strict equality) for comparison. However, JavaScript also provides another method called Object.is(), which adds unique behavior to equality ...#EqualityComparison
Mohammed Shakeelmaster-java.hashnode.dev·Nov 2, 2024Classes and Objects in JavaIn Java, classes and objects form the core of object-oriented programming (OOP). These two concepts help organize code in a structured way that represents real-world entities and interactions. Let’s delve into what each term means and why they’re imp...OOPs in JavaJava