JSFiddle - React, Tailwind, and code Playground

by Matt Swensen

JavaScript

const orig = {
	foo: [1,2,3],
};

const prox = new Proxy(orig, {
	get
});