JSFiddle - React, Tailwind, and code Playground

by Shang-De You

JavaScript

let obj = {
	a: 'a',
  fn () {
  	console.log(this.a)
  }
}

obj.fn()