JSFiddle - React, Tailwind, and code Playground

by fkling

JavaScript

var mock = {
    value_: '', 
    
    get cookie() {
        return this.value_;
    },

    set cookie(value) {
        this.value_ += value_ + ';';
    }
};


mock.cookie = "name=oeschger";
mock.cookie = "favorite_food=tripe";
alert(mock.cookie);