This question is intentionally phrased like this question.
I don\'t even know if this is possible, I remember vaguely hearing something about some properties not en
You can use the following:
var obj = { locaMethod: function() { alert("hello"); }, a: "b", c: 2 }; for(var p in obj) { console.log(p + ": " + obj[p]); //if you have installed Firebug. }