JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

const heroes = ['Batman', 'Superman'];
const villains = ['Joker', 'Bane'];

const all = [...heroes, ...villains];

console.log(all); // ['Batman', 'Superman', 'Joker', 'Bane']