바르고 뜨겁게
Vanilla JS - REST 문법 (배열) 본문
REST 문법 (배열)
순서대로 넣는게 아니라, 남은 요소를 다 넣고을땐 아래처럼 하면 된다.
rest로 여러개의 변수를 모아서 배열로 만든다.
const array = ['nodeJs', {}, 10, true];
const [node, obj, bool] = array;
bool; // [10, true]
const m = (x,y) => console.log(x,y);
m(5,6) // 5, 6
m(5,6,7,8,9) // 5, 6
const n = (x, y) => console.log(x,y);
n(5,6,7,8,9) // 5, [6,7,8,9]
'자바스크립트 > Vanilla Js' 카테고리의 다른 글
Vanilla JS - async/await (0) | 2018.12.13 |
---|---|
Vanilla JS - 콜백(callback)과 프로미스(promise) 비교 (0) | 2018.12.12 |
Vanilla JS - 비구조화 할당(destructuring) (0) | 2018.12.11 |
Vanilla JS - 화살표 함수 (0) | 2018.12.11 |
Vanilla JS - 객체 리터럴 (0) | 2018.11.28 |
Comments