13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
|
for (let i = 1; i < 5; ++i) {
|
||
|
if (true) {
|
||
|
console.log(
|
||
|
{
|
||
|
foo: { bar: 1 },
|
||
|
},
|
||
|
{
|
||
|
baz: { bam: 2 },
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
}
|