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
Jack Pritom Sorenjps27cse.hashnode.dev·Nov 16, 2024JavaScript Variables: Understanding Primitives and Reference TypesTwo basic sorts of data are stored in variables in JavaScript: primitives and reference types. Understanding the distinction between these two types is essential for memory management and for regulating the sharing, storing, and altering of data. Thi...Primitive datatypes
Sanjit Gawadesanjit.hashnode.dev·Nov 6, 2024Observations on Data Types in SQL and NoSQL DatabasesIntroduction I was revising database management, I've noticed some patterns regarding data types and their storage in SQL and NoSQL databases. Here's what I've observed: SQL and Primitive Data Types Structured Data: SQL databases are designed for da...1 likeDatabases
Abhijitsingh Sisodiyaabsis.hashnode.dev·Aug 25, 2024BigInt: Big brother of Number we didn't knew about in Javascript!!I’ve been using JavaScript for over seven years, and I thought I knew the language well. But recently, I discovered there’s still so much to learn—especially when it comes to the Primitive Types in JavaScript that I wasn’t even aware of! For example,...safe numbers javascript
Aadarshsudoaadhi.hashnode.dev·Aug 1, 2024What is Datatypes in JavaScript ?What is a datatype, and why is it called a datatype? Don’t worry—I’ll explain it clearly with a real-life example so you can understand. Imagine you’ve gone to a digital store to buy a laptop for gaming and programming. The staff present several opti...Programming Blogs
aryan sharmaaryansharma.hashnode.dev·Jul 21, 2024Converting Objects To Primitives: A Beginner's GuideWelcome Back, amazing people👋🏼 I am Aryan Sharma & 'm back again with a new blog of our JavaScript Blog series. This Article is all about Using "objects as primitives" Let's start this amazing concept in JavaScript...🏃🏼♂️ Before moving ahead wit...8 likesJavaScript
Ajat Darojatajatdarojat45.id·Jul 17, 2024Jenis-Jenis Data Primitif di JavaScriptPada artikel ini, kita akan coba memahami tipe data primitif pada Javascript. Artikel ini untuk pemula. Nilai atau tipe data primitif adalah sesuatu yang bukan objek dan tidak memiliki metode yang terkait dengannya. Dengan kata lain, tipe data primit...31 readsJavaScript
Yash Sharmayashsharma8433.hashnode.dev·Jun 18, 2024Differences Between Primitive and Non-Primitive Data Types in JavaPrimitive Data Types: Examples: long, int, char, boolean, float. Primitive data types are basic types provided by a programming language. Stored in stack memory. Directly contain their values. When assigned to another variable, a new memory loca...Primitive datatypes
Swaeswaetech.hashnode.dev·Apr 19, 2024The Word Smith"Every piece of string tells a story of highs and lows pointing their fingers at each other as if they are not one and the same." Here's a question: How does one reverse a word with code? "This is beautiful erutcip" An array. A pointer. A loop. A fe...leetcode
Lakshan Pathirajalakshan.hashnode.dev·Feb 11, 2024Difference between primitives and wrapper classes in JavaJava is a widely-used programming language renowned for its support of Object-Oriented Programming (OOP). OOP allows developers to model software using objects, with classes serving as blueprints for creating these objects. In programming, data stora...wrapper data types