mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
10 lines
106 B
JavaScript
10 lines
106 B
JavaScript
function bar(a) {
|
|
let x = [a];
|
|
let y = {};
|
|
(function () {
|
|
y = x[0].a[1];
|
|
})();
|
|
|
|
return y;
|
|
}
|