A lot is still unexplored in this area (of JavaScript). I shall try to help out others, who are keen to get with it.
var js = {
lang: "JavaScript",
amIGood: function () { return "O u bet!"; },
start: function () { return "Read more on ruturaj.net"; }
};
alert(js.amIGood());
alert(js.start());