I have seen this in a piece of JS code:
var {status, headers, body} = res;
What does it do?
|
I have seen this in a piece of JS code:
What does it do? |
|||
| show 1 more comment |
|
nice method to set few variables at once from an object (open firebug and paste this to console)
|
|||
|
|
|
i read something different from your expression here . this may help u
|
|||
|
|
|
Looks like a destructuring attempt on a variable named
Firebug console on Firefox 4b12 doesn't complain however but the statement seems to have no effect:
|
|||
|
|
{}in the left-hand side. – Ken Mar 4 '11 at 6:41