Sign in
webkit
/
WebKit
/
7e7b87940b25767efc592b218ba7b90b8b3c2997
/
.
/
JSTests
/
modules
/
destructuring-export
/
main.js
blob: f2d94795b7b5ae65f7e34b6c38e36e7e38010215 [
file
] [
log
] [
blame
]
const
drinks
=
{
Cocoa
:
'Cocoa'
,
inner
:
{
current
:
[
'Matcha'
]
},
hello
:
'Cappuccino'
};
export
const
{
Cocoa
,
inner
:
{
current
:
[
Matcha
]
},
hello
:
Cappuccino
}
=
drinks
;