js链式调用怎么理解

js链式调用怎么理解

如果我定义如下一个对象var a = {    fun1 : function(){        console.log("fun1")        return a    },    fun2 : functi
JavaScript250