JSFiddle - React, Tailwind, and code Playground

by helgatheviking

JavaScript

let test = [ { 1: 'alpha', 2: 'beta' } ];
let thing = { 1: 'alpha', 2: 'cookie' };

let result = [ ...test, thing ];

console.debug(result);