Nested DestructuringDestructuring also applies to objects nested in objects. For example#Without destructuring:function setIndexFromRoute(props) { const modalList = props.modalList const pathname = props.location.pathname // ...}CopyDestructuring the nested props object.function setIndexFromRoute(props) { const { modalList, location: { pathname } } = props // ...}Copy