Q:

calling function from function object javascript

var runApp = {

    init: function(){   
         this.run()
    },

    run: function() { 
             alert("It's running!");
    }
};

runApp.init();
0

New to Communities?

Join the community