```javascript const calllback = event=> { let {target} = event; // code with used target } ``` to ```javascript const calllback = ({target})=> { // code with used target } ``` Same in the opposite direction and with a more complex and deep destructure and function content.