blob: 2534a7015989be111ebab19890909614fd0b05c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
const mod = function() {
const mod1 = [];
return {
mod: mod1
};
}();
console.log(mod);
const mod1 = function() {
const c = [];
const c1 = c;
return {
c: c
};
}();
const c = mod1;
const mod2 = function() {
const b = [];
const b1 = b;
return {
b: b
};
}();
const b = mod2;
const mod3 = function() {
const a = [];
const a1 = a;
return {
a: a
};
}();
const a = mod3;
|