Bob Myers (2016-05-20T04:23:17.000Z)
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