欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

es6语法克隆对象和数组

程序员文章站 2022-09-04 17:24:24
es6语法克隆对象和数组 1.克隆对象: const json1={"a":"1"}; let jsonnew={...json1}; jsonnew...

es6语法克隆对象和数组

1.克隆对象:

const json1={"a":"1"};
let jsonnew={...json1};
jsonnew.b="2";
console.log(jsonnew,json1);

2.克隆数组:

const arr1=["1"];
let arrnew=[...arr1];
arrnew.push("2");
console.log(arrnew,arr1);