JSFiddle - React, Tailwind, and code Playground
by padma rubhan
JavaScript
class rubhan {
constructor(a){
this.a = "hello";
}
static test(a){
//var b = "hello";
console.log(a);
a= "hello";
}
}
/* let b = new rubhan(); */
rubhan.test('hi');
//b.test('hi');
a = 'hi';
console.log(a);
var a ;