JSFiddle - React, Tailwind, and code Playground
by mlms13
JavaScript
function Test() {
function privateTestMethod() {
alert("Hello, from the method.");
setTimeout(privateTestMethod, 2000);
}
this.testMethod = privateTestMethod;
}
var myTest = new Test();
myTest.testMethod();