JavaScript - 분할 대입의 작은 단락

1713 단어 JavaScripttech

전제 조건


https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

의 목적


MDN에 기술되지 않은 기능에 대한 설명입니다.

분할 문자열


const [head, ...rest] = 'abc'

head  // 'a'
rest  // ['b', 'c']

배열 색인 지정


const {0: a, 2: b} = ['00', '01', '02']

a  // '00'
b  // '02'

end

좋은 웹페이지 즐겨찾기