11 lines
154 B
JavaScript
11 lines
154 B
JavaScript
const defunct = {
|
|
outer: {
|
|
inner: {
|
|
three: 'three',
|
|
four: 'four'
|
|
}
|
|
}
|
|
}
|
|
|
|
const { outer: { inner: { three, ...other } } } = defunct
|