1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const template = { foo: "foo", bar: "bar", }; const x = []; x.push(template); x.push(template); x.push(template); x.push(template); x.push(template); x.push(template); console.log(JSON.stringify(x));