JSFiddle - React, Tailwind, and code Playground

by Nidhi Patel

JavaScript

var x= 10;
var o = {x:15};
function f()
{
console.log(this.x)
}
f(o);