JSFiddle - React, Tailwind, and code Playground
by jfriend00
JavaScript
var foo = {
msg1: "Hey",
msg2: this.msg1 + "how",
msg3: this.msg2 + "are",
msg4: this.msg3 + "you",
msg5: this.msg4 + "doing",
msg6: this.msg5 + "today",
test: '"' + this + '"'
};
alert(foo.test);