JSFiddle - React, Tailwind, and code Playground

by Darby Rathbone

JavaScript

var a, b = Object.create({
    get value() {
        return this;
    }, set value(e) {
        a = e;;
        return a.split('').reverse().join('');
    }
});
b.value = 'test';
console.log(b.value = 'test2', a);