JSFiddle - React, Tailwind, and code Playground

by omarqa

JavaScript

var test = {
    first:function (){
        console.log('first');
        return this;
    },
    second:function(){
        console.log('second');
        return this;
    }
}



test.first().second().first();