JSFiddle - React, Tailwind, and code Playground

by silv3r_m00n

JavaScript

var o = {
    'x' : 10,
    get_x : function()
    {
        document.write(this.x);
    }
}

o.get_x();