mirror of https://github.com/tc39/test262.git
17 lines
224 B
JavaScript
17 lines
224 B
JavaScript
|
|
||
|
const drinks = {
|
||
|
Cocoa: 'Cocoa',
|
||
|
inner: {
|
||
|
current: [ 'Matcha' ]
|
||
|
},
|
||
|
hello: 'Cappuccino'
|
||
|
};
|
||
|
|
||
|
export const {
|
||
|
Cocoa,
|
||
|
inner: {
|
||
|
current: [ Matcha ]
|
||
|
},
|
||
|
hello: Cappuccino
|
||
|
} = drinks;
|