mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
// @target: es5,esnext
|
|
const a = "a";
|
|
const b = "b";
|
|
const { [a]: aVal , [b]: bVal } = (()=>{
|
|
return {
|
|
[a]: 1,
|
|
[b]: 1
|
|
};
|
|
})();
|
|
console.log(aVal, bVal);
|