v1
10/8/2019 by rabelais -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const getsetobj = {
  _value: null,
  get value() {
    return _value
  },
  set value(val) {
    _value = val
  }
}

let proxyobj = {
  value: null,
};

proxyobj = new Proxy(proxyobj, {
  set: (obj, key, value) => {
    return Reflect.set(obj, key, value);
  }
})
delete caserun single casemove downdrag and drop case


ready



getsetobj.value = 1;
console.log(getsetobj.value)
delete caserun single casemove updrag and drop case


ready



proxyobj.value = 1;
console.log(proxyobj.value);
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN