JSFiddle - React, Tailwind, and code Playground
by Nabaraj Saha
JavaScript
var a=90;
var obj={
"a":20,
"b":10,
"c":5
}
function test(){
console.log(this.a)
}
test();
obj.test = test;
obj.test();
by Nabaraj Saha
var a=90;
var obj={
"a":20,
"b":10,
"c":5
}
function test(){
console.log(this.a)
}
test();
obj.test = test;
obj.test();