Sign in
webkit
/
WebKit
/
71834eddd7ce860e058d7cdd0663754b7242ed03
/
.
/
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
;