JSFiddle - React, Tailwind, and code Playground
by Matthew Day
JavaScript
var score = {
prop: 42,
func: function() {
return this.prop;
}
};
var test = {
prop: 42,
func: function() {
return this.prop;
}
}
console.log(test.func());
// expected output: 42