JSFiddle - React, Tailwind, and code Playground

by Cameron Bernhardt

JavaScript

var a = ["Test1", 1];
var b = ["Test2", 2];
var c = [];
c.push(a);
c.push(b);

console.log(c);