js spread rest

kinghong97·2022년 6월 21일
0
spread
const oldArray = [1,2,3]
const newArray = [...oldArray, 4,5]

const oldObject = {대충 오브젝트}
const newObject = {...oldObject, newProp: 1}

기존에 있던거 추가로 뭔가를 넣어서 새로 만들 때 사용

rest
function sortArgs(...args){
	return args.sort()
}
여기선 args를 무한으로 받게한다. 그것들은 배열이 된다.

0개의 댓글