const myFunc = ({event: {target: {name,secondName}}}) => { console.log(name); console.log(secondName); } myFunc({event: {target: {name: 'fred'}}})