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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - 司徒正美
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
WordPress大学
WordPress大学
爱范儿
爱范儿
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏

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
Shallow Copy VS Deep Copy In Java Script : Explained in e...
Yogesh Pant · 2026-06-26 · via DEV Community

What is copying and how does it Work in JS?

In JavaScript, Copying is the process of making duplicate of of an existing values like integer, string, objects and function.
However this is not so easy and straightforward as it looks. It all depends upon either you are copying primitive data types or non-primitive data types. If you are copying a primitive data type then it would be working with primary value but in the case of non-primitive data types it work with referenced values.

Lets see how it works with primary value and the referenced values

Primitive Value (Copy By Value)

For primitive data types, there it is copy by value.
Let me show this to you with the help of an example in code block by just simply declaring an integer "a" and copying its value in another integer "b".

let a = 10;
let b = a;     // Copying the value

b = 20;        // Changing b does NOT affect a
console.log(a); // Output: 10

You can see that changing value of b does not affecting a. This all happens because JavaScript creates a completely new independent copy of the actual values in the memory.

On other hand primitive data types consist of integers, boolean values,strings, symbols, bigInt and null.

Non-Primitive Value (Copy By Reference)

For non- primitive data types, there it is copy by reference.
Let it make clear with example of non-primitive data type object.

let original = { name: "YOO" };
let copy = original; // Copying the reference!

copy.name = "NEW"; 

console.log(original.name); // "NEW" -> Oops! The original changed too.

In above code block there it is a object name original that is stored somewhere in memory, and variable hold a pointer(reference) to that location.
If you are copying the variable you are just copying the pointer, not the actual referenced value.
So, when you are changing the value in copied item it will change the actual value in it.


To solve this problem here comes the concept of Shallow Copy and Deep Copy:

Here comes the golden rule to understand the difference between shallow copy and deep copy.

  • A shallow copy copies the references.
  • A deep copy copies the values.

Its simple, let break it through analogy of pizza :

-- > For shallow copy it is same as you and your friend is sharing a same pizza. Whenever you and your friend eats pizza it shrinks.

-- > For deep copy it is like you both owns different pizza. If your friend eats a slice, his pizza gets shrinks your remains untouched and same goes with your friend's pizza when you eats your pizza, his pizza remains untouched.

And that's it , this is full concept that revolves around shallow copy and deep copy.
Now lets get it through some examples of javascript.


Shallow Copy in JavaScript:

A shallow copy duplicates the top level of values. If there are some nested values it still copies it but only the referenced values.

  • Using Spread Operator(...) - This is one of the most common techniques used to make shallow copy in JavaScript.
let original = { name: "YOO",
    age: 22,
    gender: "Male"
 }; // Original named object.

let copyOriginal = { ...original}  // making a shallow copy of original named object using spread operator.

console.log(copyOriginal.name) // Output --> YOO

But there is A Shallow trap, whenever it comes a nested values and copying through spread operator those nested values will share exactly same references. So changing these referenced values will also lead to the changes in actual values.

To solve this problem here comes the concept of Deep Copy, lets learn this through some examples of javaScript.

Deep Copy In JavaScript:

Deep Copy in JavaScript creates a differently new object to copy the actual values. Changes done in values of new copied objects are not displayed in the actual values.
Let us see some methods to create a deep copy in JavaScript.

  • Using built in function structuredClone() : StructuredClone() is a built in javaScript function that is available in all modern day browser and Node.js. It handles deep nested structure perfectly. It is built into the runtime(browser and node.js) and handles most complex data types smoothly.
let Teas = {            // Create a object named as tea with some values inside it
    name: "Lemon tea",
    caffine: "No",
    tasty: "Yes"
}

let newTeas = structuredClone(Teas);  // Creating a deep copy of teas using structured clone method 

newTeas.name = "Mango Tea";
console.log(Teas);  //Output --> { name: 'Lemon tea', caffine: 'No', tasty: 'Yes' }
console.log(newTeas); //Output --> { name: 'Mango Tea', caffine: 'No', tasty: 'Yes' }

PROS AND CONS

  • Pros is that it is fast, native and correctly handles Date ,RegExp ,maps and circular references.
  • Cons is that it is will throw error when an object contain function or DOM nodes.

  • Using JSON.parse(JSON.stringify()): Before structuredClone() developers uses this trick to create a deep copy of object. It converts the object into a JSON string, then parse it back into brand-new object.
const original = { name: "Yo!!", nested: { id: 12 } };

const clone = JSON.parse(JSON.stringify(original));

Why we should not use it?
The method strips out the data type that are not supported by JSON. IF your object contains date , undefined , Null, Map, Set , or Infinity, they would either be lost or may be get corrupted or the value can be converted to NULL.


This is all about Deep Copy and Shallow Copy. Hope this gets you how and when to use shallow and deep copy method. JavaScript is full of such twist and turns.