I have an object called this.props
which contains
{
actions: Object,
dirty: false,
form: \"Statement\",
autofill: functon(),
**statement: O
I would like to extract statement object and the isConfirmed property in the same line
const { statement: { isConfirmed }, statement } = this.props;
That way you get both isConfirmed
and the whole statement
object.
References: