V
V
vetsmen2019-09-07 15:14:15
JavaScript
vetsmen, 2019-09-07 15:14:15

How to properly destructorize?

There is a code:

const { group } = await this.getOne(payload.id);
                    return { user: { userId: payload.id, group: group } };

However, it may be that the getOne code will not find the object by payload.id => will return underfind/null, and then the destructorization will give an error. What is the best way to handle this exception?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2019-09-07
@vetsmen

const { group } = await this.getOne(payload.id) || {};
if (!group) {
  ...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question