惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
F
Fortinet All Blogs
J
Java Code Geeks
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
M
MIT News - Artificial intelligence
腾讯CDC
Last Week in AI
Last Week in AI
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
博客园 - 叶小钗
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
L
LangChain Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Primitive and Reference Values in JavaScript
Robert Hiege · 2026-05-11 · via DEV Community

Photo of black woman with confused expression on her face

                                                              Pexels.com: Photo by Anna Shvets

Introduction

JavaScript has two different types of data values—primitive and reference values. As is the case in any programming language, JavaScript has types to represent different kinds of data, such as integers, decimals and alphanumeric characters.

Additionally, there are more complex data structures that contain groupings of data, as is the case in objects, functions, and arrays. Both functions and arrays are special kinds of objects and may also have properties added, changed or deleted from them, as is the case for objects. These kinds of values are known as reference values.

What is the Difference Between Primitive and Reference Values?


Primitive Values

As explained by the Mozilla Developer Network (MDN), “All types except Object define immutable values represented directly at the lowest level of the language. We refer to values of these types as primitive values” (“JavaScript Data Types and Data Structures”).

Primitive values may be declared in variables, on their own, or as constituent properties of objects. What distinguishes them from reference values is that they have no properties or methods.

A primitive value may be declared within a variable as shown below:

const fullName = 'Robert Hieger';      //  string

const price = 24.95;                   //  number

const deficit = -10978234156973n;      //  bigint

cosnt isAdult = true;                  //  boolean

Enter fullscreen mode Exit fullscreen mode


Primitive values may also be represented as literals and not declared as variables, as shown below:

//  Example of a string literal
console.log('I am a string!');

//  Example of a number literal
console.log(44.95);

//  Example of a bigint literal
console.log(-10978234156973n);

//  Example of a boolean literal
console.log(true);

Enter fullscreen mode Exit fullscreen mode


The types demonstrated above are not all the primitive values in JavaScript, but they are the ones that are most frequently used.

Here is a complete list of the primitive values in JavaScript:

Type Description Example
string The string type represents any sequence of alphanumeric data. 'This is a string value'.
number The number type represents any number, including positive and negative numbers, and floating point values. The range of values that can be represented safely by the number type is -(253 - 1) to 253 -1. 54, -96, 34.278 and -286.432 are all examples of the number type.
bigint The biginit type can represent numbers larger or smaller than those that fall within the range of the number type. It is important to note that bigint values cannot make use of the Math functions available in JavaScript. 12978342578196n and -34924534228635n are both examples of the bigint type.
boolean The boolean type represents one of two possible logical values—true and false. true and false are the only possible values.
null The null type is a special case. Though it is considered a primitive value given that it is semantically a primitive value, JavaScript lists this type as an object when queried with the typeof() function. This is because it is a reference to a nonexistent or invalid object or address in memory. null is the only possible value.
undefined The undefined type represents the absence of a value in a variable or a parameter that has been given no argument. This value is assigned automatically by JavaScript and should not be declared by the developer. undefined is the only possible value.
symbol The symbol type is another very special case. It is created using the constructor of the Symbol object provided by JavaScript. It produces an immutable value and is used sometimes to define a key for an object property that cannot be overwritten by any other code, thus preventing identifier collisions. const mySymbol = Symbol('category');

Are Objects a Data Type?

Regarding objects, JavaScript.info states that “[a]ll other types are called ‘primitive’ because their values can contain only a single thing (be it a string or a number or whatever). In contrast, objects are used to store collections of data and more complex entities” (“Data Types”).


Reference Values

By contrast to primitive values, reference values are pointers to memory addresses containing a primitive value. These occur all the time in objects.

When an object is declared and initialized, a pointer is created that references all properties and/or methods that are members of that object.

This characteristic of reference values produces very useful tools for the manipulation of data. It is also sometimes the subject of some confusion for new developers.

Here is one example:

//  Object literal for an employee

const employee = {
  lastName: 'Smith',
  firstName: 'Jane',
  jobTitle: 'Junior Front-End Developer',
  skills: [
    'HTML',
    'CSS',
    'JavaScript'
  ]
};

//  Change jobTitle
employee.jobTitle = 'Senior Front-End Developer';

//  Add an element to the skills property
employee.skills.push('tailwindcss');

//  Delete an element from the skills property
employee.skills.splice(3, 1);      //  removes 'tailwindcss'

Enter fullscreen mode Exit fullscreen mode


Why is it possible to make changes to the property when it is declared using the const keyword? This is possible because employee is an object. As mentioned before, when objects are declared and initialized, a pointer is created to an address in memory. It is this memory address that is immutable, not the data to which it points. Therefore, changes can be made to the properties of the object.

Another point of confusion sometimes arises when comparing two objects whose properties are identical as follows:

const employee = {
  lastName: 'Smith',
  firstName: 'Jane',
  jobTitle: 'Junior Front-End Developer',
  skills: [
    'HTML',
    'CSS',
    'JavaScript'
  ]
};

//  Second object with identical properties
const employee2 = {
  lastName: 'Smith',
  firstName: 'Jane',
  jobTitle: 'Junior Front-End Developer',
  skills: [
    'HTML',
    'CSS',
    'JavaScript'
  ]
};

console.log(
  `employee === employee2: ${employee === employee2}`
);

//  Expected Output:
//  'employee === employee2: false'

Enter fullscreen mode Exit fullscreen mode


Why does employee === employee2 evaluate to false? This happens because employee and employee2 are two different objects with two unique memory addresses. They are therefore not equal. To prove the point further, this is what happens if you compare the properties of employee and employee2:

const employee = {
  lastName: 'Smith',
  firstName: 'Jane',
  jobTitle: 'Junior Front-End Developer',
  skills: [
    'HTML',
    'CSS',
    'JavaScript'
  ]
};

//  Second object with identical properties
const employee2 = {
  lastName: 'Smith',
  firstName: 'Jane',
  jobTitle: 'Junior Front-End Developer',
  skills: [
    'HTML',
    'CSS',
    'JavaScript'
  ]
};

console.log(
  'employee.lastName === employee2.lastName: ' +
  ${employee.lastName === employee2.lastName}
);

//  Expected Output:
//  'employee.lastName === employee2.lastName: true'

Enter fullscreen mode Exit fullscreen mode


Conclusion

In the above code, the console.log() statement tests whether employee and employee2 are equal and of the same data type. They are of the same type as they are both objects, but they are not equal.

The output of the above code clearly demonstrates that what is immutable in an object is the memory address of the identifier (variable name). This cannot be changed or redeclared. However, any property of the object, as one of its values, may be changed, added or deleted.


                                                          Works Cited

“JavaScript Data Types and Data Structures.” MDN Web Docs, Mozilla, 8 Jul. 2025, https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Data_structures. Accessed 29 Mar. 2026.

Kantor, Ilya. “Data Types.” JavaScript.info, TechLead, LLC, 9 Jul. 2024, https://javascript.info/types. Accessed 8 April 2026.