JSFiddle - React, Tailwind, and code Playground

by irinablue

JavaScript

const a1 = [1,2];
const a2 = [1,2];

const a3 = a1.concat(a2);

console.log(a3);