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,...Discusssafe 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...DiscussProgramming 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...Discuss·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...DiscussJavaScript
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...DiscussPrimitive 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...Discussleetcode
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...Discusswrapper data types
Desiah Barnettdesiahbarnett.hashnode.dev·Jan 13, 2024Understanding Variables.A function is a structured data type that is a container that stores values. Think of that dream apartment you want. You will need furniture inside your new beautiful home, so you have a choice to ditch the old stuff or pack the stuff you want. Eithe...Discuss·94 readsSoftware Engineering
Saqibiamsaqib.hashnode.dev·Dec 11, 2023Primitive vs. Reference Types in JavaScriptIn JavaScript, Only values have types, variables are just simple containers for those values. Using the typeof operator you can check the data type of a value. Primitive types: These are simple, immutable data types that are stored directly in memory...Discussreference types in javascript
Fruitful Ejirofruitfulejiro.hashnode.dev·Nov 10, 2023Understanding Memory Allocation in JavaScript: Primitives vs. Reference Types.Understanding how variables are processed and stored in Javascript is crucial for writing efficient and bug-free code. Two fundamental categories of variables, namely Primitive Types and Reference Types, play a vital role in shaping the behavior of y...Discuss·21 likes·53 readsJavaScript