script - spread 연산자
javascript에서 스프레드연산자를 안다면 배열을 사용할때 간편하게 사용 할 수 있어서 좋다.
1.정의
스프레드 연산자는 자신이 원하는 객체를 복사해서 넣는 방법이다.
사용방법은 앞에 ... 을 붙이면 된다.
2. 코드
어떻게 복사해서 넣는지는 직접 코드를 확인하면서 보면 쉽게 이해할 수 있다.
const student1 ={
name: '이'
};
const student2 = {
...student1,
name: '김',
age: 10
};
const student3 = {
...student2
name: '박',
age:20,
hobby: 'game'
};
console.log(student1);
console.log(student2);
console.log(student3);
위의 코드를 해석을 해석하자면
student2에서 ...student1를 작성하므로써 스프레드 연산자를 사용하였다.
그래서 출력을 하였을 때 student1 객체들과 함께 출력이 된다.
student3도 마찬가지로 ...student2을 썼기때문에 출력을 할때 student2 객체들도 함께 출력이 된다.
Author And Source
이 문제에 관하여(script - spread 연산자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@zlor26/Javascript-spread-연산자저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)