I've defined the following javascript object:
var WealthyLaughingDuckControl = {
users: [],
setUsers: function(new_users) {
this.users = new_users;
}
};
I would like it to be available inside the chrome/firebug's javascript console:
> WealthyLaughingDuckControl
// console result goes here
At now, I get:
> ReferenceError: WealthyLaughingDuckControl is not defined
How can I do that?