[JavaScript] spread operator

__Dev_1·2022년 8월 5일
0

JavaScript

목록 보기
7/7
post-thumbnail

Spread operator

스프레드 연산자( ...)를 사용하면 기존 배열이나 객체의 전체 또는 일부를 다른 배열이나 객체로 빠르게 복사할 수 있습니다.

🔅 EX)

const myVehicle = {
  brand: 'Ford',
  model: 'Mustang',
  color: 'red'
}

const updateMyVehicle = {
  type: 'car',
  year: 2021, 
  color: 'yellow'
}

const myUpdatedVehicle = {...myVehicle, ...updateMyVehicle}

--brand: "Ford"
  color: "yellow"
  model: "Mustang"
  type: "car"
  year: 2021

참고자료

https://www.w3schools.com/react/react_es6_spread.asp
https://paperblock.tistory.com/62

profile
메모장 :)

0개의 댓글