반응형
Object.assign()
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
Object.assign()
const target = { a: 1, b: 5 };
const source = { b: 7, c: 5 };
const returnedTarget = Object.assign(target, source);
console.log(target);
// expected output: Object { a: 1, b: 4, c: 5 }
console.log(returnedTarget);
// expected output: Object { a: 1, b: 4, c: 5 }
반응형
'프로그래밍 > Script' 카테고리의 다른 글
[javascript] ES6 for beginners, ES6 문법 + 활용 패턴 살펴보기 (0) | 2022.01.24 |
---|---|
[script] 생활코딩 마인드맵 라이브러리 cytoscape 사용법 (0) | 2022.01.19 |
[javascript] window.onload vs $(document).ready() (0) | 2022.01.13 |
jquery , sortable, 안에 텍스트는 드래그 가능하게. bootstrap sortable inner text dragable (0) | 2022.01.12 |
자바스크립트로 현재시간 timestamp 구하기 (0) | 2022.01.12 |