问题
If I want to call a function like this:
moo({ a: 4 });
Normally I'd have to phrase my function definition like this:
function moo(myArgObj) {
print(myArgObj.a);
}
But this awesome syntax is totally valid in spidermonkey for defining functions:
function moo({ a, b, c }) { // valid syntax!
print(a); // prints 4
}
What is this feature?
回答1:
It's called destructuring. You might find the most info at MDN: Destructuring assignment.
The ECMAScript standards discussion can be found on their wiki page, also interesting might be this blog post at dailyjs.
来源:https://stackoverflow.com/questions/10804982/where-can-i-get-info-on-the-object-parameter-syntax-for-javascript-functions