JSFiddle - React, Tailwind, and code Playground

by garethrwilliams

JavaScript

/* const moreThanOne = true;
const obj = {one: 'one', two: 'two'}
obj = {...obj, moreThanOne}
console.log(obj) */

function hello (one, two, three) {
	console.log(one, two, three)
}

const arr = [[1, 2, 3]]

hello(...[...arr])