coffeescript에서 이것은 간단합니다.
coffee> a = ['a', 'b', 'program']
[ 'a', 'b', 'program' ]
coffee> [_..., b] = a
[ 'a', 'b', 'program' ]
coffee> b
'program'
es6는 비슷한 것을 허용합니까?
> const [, b] = [1, 2, 3]
'use strict'
> b // it got the second element, not the last one!
2
> const [...butLast, last] = [1, 2, 3]
SyntaxError: repl: Unexpected token (1:17)
> 1 | const [...butLast, last] = [1, 2, 3]
| ^
at Parser.pp.raise (C:\Users\user\AppData\Roaming\npm\node_modules\babel\node_modules\babel-core\node_modules\babylon\lib\parser\location.js:24:13)
물론 es5 방식으로 할 수 있습니다.
const a = b[b.length - 1]
그러나 아마도 이것은 하나의 오류로 인해 약간 벗어나기 쉽습니다. 표시가 구조 해체의 마지막 일뿐일까요?
...
es6 의 동작에 관한 것입니다. 특히 구조화 또는 매개 변수 목록에서 마지막으로 만 사용할 수 있습니다. 이것은 coffeescript에서 es6로 들어오는 누군가에게는 잠재적으로 반 직관적이기 때문에이 질문은 잠재적으로 유용합니다.
[1,2,3].slice(-1)
당신도에 해당 destructure 수 없습니다 [1,2,3].slice(0, -1)
. 이것은 일반적인 작업입니다. ES6 구조화는 어떻게 든 농담입니다!