Let's say i have this component,
export default function Xyz(props) {
...
}
If i use object destructing,
export default function Xyz({x, y, z}) {
...
}
I want know that if i use the destructing method for every method for every function component and also in render method of traditional component, will it uses is more memory or will it take little load because of the so many consts or lets variable in application.
is there any tool or something so can measure this thing ? or someone just did that already ? i would like to understand how dose it works actually.