JSFiddle - React, Tailwind, and code Playground

by dru_zod

JavaScript

var x = undefined;
var y = [1, 2, 3];

var z = [...x, ...y];

console.log(z);