在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]
但这也许有点容易出错。摔得痛只能是重组中的最后一件事吗?
7
为什么每个人都认为ES6会改变一切,并且有一些执行xyz的新语法?
—
菲利克斯·克林
@FelixKling,问题特别是关于
—
乔治·西姆斯
...
es6中的行为的,尤其是它只能在解构时或在参数列表中用作最后用途。这对于从coffeescript进入es6的人来说可能是违反直觉的,因此此问题可能很有用。
这意味着,除了
—
scriptum
[1,2,3].slice(-1)
您,您甚至无法破坏相当于的结构[1,2,3].slice(0, -1)
。这些是常见的操作。ES6的破坏性在某种程度上是个玩笑!
@即使有正当的理由-处理无限的可迭代对象。
—
乔治·西姆斯
休息太糟糕,因为第一个参数不起作用。本来很酷...这是一个使用一些答案的jsperf jsperf.com/destructure-last/1
—
Shanimal