Following on from #3972 (and this [comment] in particular)… Should we not align with ES6 and implement _elision_? ~~~ js const [,,c] = [1,2,3]; console.log(c) // 3 ~~~ ~~~ coffee [,,c] = [1,2,3] console.log c # Error ~~~ [comment]: https://github.com/jashkenas/coffeescript/issues/3972#issuecomment-98233763