JSFiddle - React, Tailwind, and code Playground

by qustosh

JavaScript

//TEST object this
var b = { 
    a: {
    func: function(){
        console.log(this);
    },
    b:1,
    q: this  
    }
};
console.log(b.a.q);