Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
piezoney
on May 31, 2017
|
parent
|
context
|
favorite
| on:
Node v8.0.0 Released
Well no, since you can use object destructuring.
const fn = ( { arg1 = '', arg2 = [], arg3 = true } = {} ) => { }
scottmf
on May 31, 2017
[–]
But isn't this already valid with trailing commas?
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
const fn = ( { arg1 = '', arg2 = [], arg3 = true } = {} ) => { }