var SortingTable = new Class({ initialize: function( table, options ) { ...
Is there a shortcut in MooTools for telling if an object is an object or an array?
I have a json object with a function:
var thread = { title: "my title", delete: function() { alert("deleted"); ...
Can somebody explain me, why I am able to overwrite a method value of a global instance by just setting its value locally and why I am not able to do ...