最佳答案
const a = {
b: {
c: 'Hi!'
}
};
const { b: { c } } = a;
Is it possible rename b
in this case? I want get c
and also rename b
.