JSFiddle - React, Tailwind, and code Playground

by Anton Spirin

JavaScript

class TestTwo {
  constructor() {}
  log() {
    function logThis() {
      console.log('logThis', this);
    }
    logThis();
  }
}

const t = new TestTwo();

t.log();