[TypeScript] Shallow copy object by using spread opreator

For example we have an object:

const todo = {
  text: "Water the flowers",
  completed: false,
  tags: ["garden"]
};

 

We shallow copy it:

const shallowCopy = { ...todo };

 

Verify that shallowCopy is not todo:

console.log(todo === shallowCopy) // false

 

Change text prop of shallowCopy to somethingelse:

shallowCopy.text = "Mow the lawn"; 

console.log(shallowCopy.text) //  "Mow the lawn";
console.log(todo.text); // "Water the flowers"

 

But if we want to push a new value to the tags array:

shallowCopy.tags.push("weekend");

Then we can find out that, both shallowCopy and todo object's tags both changed.

The reason for that is the shallow copy's array prop, still point to the original reference. We need to do a deep clone in order to avoid the mistake.

[Javascript] Different ways to create an new array/object based on existing array/object

posted @   Zhentiw  阅读(264)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2015-11-13 [WebStrom] Change default cmd to Cygwin
2014-11-13 [AngularJS] Angular 1.3 new $q constructor
2014-11-13 [AngularJS] ng-change vs $scope.$watch
2014-11-13 [AngularJS] AngularJS 1.3 $scope.$watchGroup
2014-11-13 [AngularJS] $scope.$warchCollection
2014-11-13 [AngularJS] $scope.$watch
点击右上角即可分享
微信分享提示