JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

class One {
	field = 'field';
  
  get field() {
  	return 'the method';
  }
}

const f = new One().field;

console.log(f);