ในกาแฟนี่ตรงไปตรงมา:
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]
แต่บางทีนี่อาจจะเกิดข้อผิดพลาดเล็กน้อย Splat เป็นเพียงสิ่งสุดท้ายในการทำลายล้างได้หรือไม่?
...
ใน es6 โดยเฉพาะอย่างยิ่งว่าสามารถใช้เป็นสิ่งสุดท้ายเมื่อทำลายโครงสร้างหรือในรายการพารามิเตอร์ สิ่งนี้อาจสวนทางกับคนที่เข้ามาใน es6 จาก coffeescript ดังนั้นคำถามนี้อาจมีประโยชน์
[1,2,3].slice(-1)
destructure [1,2,3].slice(0, -1)
สิ่งเหล่านี้เป็นการดำเนินการทั่วไป การทำลาย ES6 เป็นเรื่องตลก!