JSFiddle - React, Tailwind, and code Playground
by jrab227
JavaScript
var theThing = {};
var theThing2 = {};
var replaceThing = function () {
theThing2.next = theThing;
theThing.next = theThing2;
theThing = {};
theThing2 = {};
};
setInterval(replaceThing, 1000);