Bob Myers (2016-05-20T04:23:17.000Z)
Although I agree this is somewhere between unnecessary and undesirable, it
does raise a semi-valid related point that there's no way to make a
destructured parameter `const`.

```js
function foo({const a, const b}) { ... }

function foo(o) {
  const {a, b} = o;
}
```

Bob
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20160520/f000328d/attachment.html>
rtm at gol.com (2016-05-20T04:41:08.785Z)
Although I agree this is somewhere between unnecessary and undesirable, it
does raise a semi-valid related point that there's no way to make a
destructured parameter `const`.

```js
function foo({const a, const b}) { ... }

function foo (const {a, b}) { ... }

function foo(o) {
  const {a, b} = o;
}
```

Bob