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