File size: 421 Bytes
1e92f2d |
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 32 33 34 |
const a = () => 1;
const b = () => 2;
const c = () => {
return 1;
};
const d = () => {
return 2;
};
const e = function () {
return 3;
};
const f = function e() {
return 4;
};
function x() {
const xa = () => 1;
const xb = () => 2;
const xc = () => {
return 1;
};
const xd = () => {
return 2;
};
const xe = function () {
return 3;
};
const xf = function xe() {
return 4;
};
}
|