一些方法的正确用法

concat()

concat() 方法用于连接两个或多个数组。

该方法不会改变现有的数组,而仅仅会返回被连接数组的一个副本。
这方法对于在React中很有用,可以在不直接改变传入到子组件的属性值的情况下,间接对属性值改变

let newCount = props.count.concat(); 
newCount.splice(0, 1)

Object.assign() 方法

该方法用于将所有可枚举属性的值从一个或多个源对象复制到目标对象

const target = { a: 1, b: 2 };
const source = { b: 4, c: 5 };

const returnedTarget = Object.assign(target, source);

console.log(target);
// expected output: Object { a: 1, b: 4, c: 5 }

console.log(source);
//expected output: Object { b: 4, c: 5 }

console.log(returnedTarget);
// expected output: Object { a: 1, b: 4, c: 5 }

你可能感兴趣的:(一些方法的正确用法)