Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kotlin
- table
- Spring
- tomcat
- hadoop
- Eclipse
- SSL
- vaadin
- 보조정렬
- JavaScript
- Java
- mapreduce
- plugin
- R
- SPC
- 공정능력
- mybatis
- window
- es6
- SQL
- IntelliJ
- NPM
- xPlatform
- Android
- Sqoop
- Python
- GIT
- MSSQL
- Express
- react
Archives
- Today
- Total
DBILITY
javascript es6 destructuring assignment ( 구조분해할당 ) 본문
front-end & ui/javascript
javascript es6 destructuring assignment ( 구조분해할당 )
DBILITY 2021. 12. 22. 08:55반응형
Array나 Object의 자료를 꺼내 변수에 할당하는 경우는 많다. 손쉽게 할 수 있는 destructuring문법이 추가되었다.
var [a, b, c, d = 0, e] = [1, 2, 3];
console.log(a);
console.log(b);
console.log(c);
console.log(d);
console.log(e);
var obj = {name: '이도', born: 1397, age: new Date().getFullYear() - 1397};
console.log(obj);
var {name} = obj;
console.log(name);
var {name, born, age = 100} = obj;
console.log(name, born, age);
var {name, born, age} = obj;
console.log(name, born, age);
var {name, born, age1} = obj;
console.log(name, born, age1);
//콜론은 '분해하려는 객체의 프로퍼티: 목표 변수’와 같은 형태
var {name: callsign, born, age: age1} = obj;
console.log(callsign, born, age1);
var obj2 = {name: callsign, year: born, age1}
console.log(obj2);
fn({name, born, age});
function fn({name,born}) {
console.log(name);
console.log(born);
}
fn2([name, born, age]);
function fn2([name,born,age]) {
console.log(name);
console.log(born);
console.log(age);
}
d의 경우 default값을 설정한 것. e의 경우 할당을 안했으니 undefined가 출력된다.
Object의 경우 mustache를 사용하는데, default값은 object에 match 되는 key가 없을 때만 된다.
object의 key와 동일한 명을 사용해야 하나 variable name : new name형태로는 새로운 명칭을 줄 수 있다.
함수 파라미터로도 줄 수 있다. 세상 좋아졌네.
반응형
'front-end & ui > javascript' 카테고리의 다른 글
javascript es6 promise (0) | 2021.12.22 |
---|---|
javascript es6 import/export for variable,function,class (0) | 2021.12.22 |
javascript es5 inheritance ( 상속 ) (0) | 2021.10.29 |
javascript constructor function (0) | 2021.10.29 |
javascript es6 class (0) | 2021.10.28 |
Comments