ES6で配列の最後の要素を取得するためのデストラクチャリング 質問する

ES6で配列の最後の要素を取得するためのデストラクチャリング 質問する

コーヒースクリプトこれは簡単です:

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 つ違いのエラーが発生しやすいかもしれません。スプラットは、デストラクチャリングの最後の要素としてのみ使用できますか?

ベストアンサー1

console.log('last', [1, 3, 4, 5].slice(-1));
console.log('second_to_last', [1, 3, 4, 5].slice(-2));

おすすめ記事