最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

What is this javascript syntax where you have () around the whole variable expression? - Stack Overflow

programmeradmin1浏览0评论
({ body: { customer } } = await callCreateCustomer({
    email: createRandomEmailAddress(),
    key: 999,
    password: 'password',
}));

I don't understand what it means when you have () around the whole expression?

What does it do?

({ body: { customer } } = await callCreateCustomer({
    email: createRandomEmailAddress(),
    key: 999,
    password: 'password',
}));

I don't understand what it means when you have () around the whole expression?

What does it do?

Share Improve this question edited Aug 28, 2019 at 15:03 jingteng asked Aug 28, 2019 at 9:23 jingtengjingteng 2,6214 gold badges15 silver badges18 bronze badges 2
  • 1 It's using destructuring to assign parts of the return value to the existing identifiers body and customer. – jonrsharpe Commented Aug 28, 2019 at 9:25
  • 2 @jonrsharpe Might be worth pointing out, only customer gets destructed.. – Keith Commented Aug 28, 2019 at 9:34
Add a ment  | 

2 Answers 2

Reset to default 16

This is Destructuring Assignment without declaration. Here customer variable is already declared above and a value is being assigned with response.body.customer

From the documentation:

The parentheses ( ... ) around the assignment statement are required when using object literal destructuring assignment without a declaration.

{a, b} = {a: 1, b: 2} is not valid stand-alone syntax, as the {a, b} on the left-hand side is considered a block and not an object literal.

However, ({a, b} = {a: 1, b: 2}) is valid, as is var {a, b} = {a: 1, b: 2}

Your ( ... ) expression needs to be preceded by a semicolon or it may be used to execute a function on the previous line.

It forces expression context so that the first { is not treated as the start of a block.

发布评论

评论列表(0)

  1. 暂无评论