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]
しかし、多分これは1つのエラーで少しずれがちです。はじけは、解体の最後にあるだけですか?
...
であり、特に、解体時またはパラメーターリストで最後に使用する場合にのみ使用できます。これは、coffeescriptからes6を使用する人にとって直観に反する可能性があるため、この質問は潜在的に有用です。
[1,2,3].slice(-1)
あなたに加えてに相当する構造を分解することさえできないことを意味します[1,2,3].slice(0, -1)
。これらは一般的な操作です。ES6の解体はなんとなく冗談です!