greg 4d1d2f8c52
Some checks failed
continuous-integration/drone Build is failing
maj
2023-06-11 20:17:11 +02:00

31 lines
314 B
JavaScript

let a = {};
let b = {
"1": "one",
"2": "two",
"3": "three"
};
let c = {
[42]: "answer",
[7]: "lucky"
};
let d = {
a: 1,
b: 2,
c: 3
};
let e = d.a;
let f = d["c"];
let g = {
m() {},
['n'](a) {},
o(a) {
return a;
}
};
let h = ({}).toString();
let i = {
...d,
a
};
a?.['b']?.[0]?.(1);