JSFiddle - React, Tailwind, and code Playground
JavaScript
let test = [ { 1: 'alpha', 2: 'beta' } ];
let thing = { 1: 'alpha', 2: 'cookie' };
let result = [ ...test, thing ];
console.debug(result);
let test = [ { 1: 'alpha', 2: 'beta' } ];
let thing = { 1: 'alpha', 2: 'cookie' };
let result = [ ...test, thing ];
console.debug(result);