JSFiddle - React, Tailwind, and code Playground

by gurkavcu

JavaScript

function Deneme() {
 
    this.a = function() {
        this["b"]();
    }
    
    this.b = function() {
         alert('TEST');
    }
    
}


var deneme = new Deneme();
deneme.a();