javascript 传播和休息运营商

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 传播和休息运营商相关的知识,希望对你有一定的参考价值。

// Spread - Used to split up array elements or object properties
const newArray = [...oldArray,1,2];
const newObject = {...oldObject, newProp:5};

//Example
const numbers = [1,2,3];
const newNumbers = [...numbers, 4];
console.log(newNumbers); //gives [1,2,3,4]

const person = {
	name:'Max'
};

const newPerson = {
	...person,
	age:28
}

console.log(newPerson); // gives [object Object] { age:28, name:'Max'}

//Used to merge a list of function arguments into an array
function sortArgs(..args){
	return args.sort();
}

// ...args merges input into an array
const filter = (...args) => {
	return args.filter(el => el === 1);
}

console.log(filter(1,2,3)); // gives [1]

以上是关于javascript 传播和休息运营商的主要内容,如果未能解决你的问题,请参考以下文章

javascript 传播运营商(...)

javascript 传播运营商

javascript ......传播运营商

javascript 传播运营商

javascript 传播运营商

反应休息参数语法与传播语法