Many of us are familiar with using console commands such as
**skuid.$M('ModelName');**
I recently discovered that we can use console.table()… Enjoy!
**console.table(skuid.$M('ModelName').data);**
Returns the data in a model
**console.table(skuid.$M('ModelName').data, a'Id', 'Name', 'Status\_\_c']);**
Returns the data for specific fields in a model
**console.table(skuid.$M('ModelName').fields);**
Returns the properties of all the fields in a model
**console.table(skuid.$M('ModelName').conditions);**
Returns the properties of all the conditions in a model
**console.table(skuid.model.getModelsList());**
Returns a list of all Models
**console.table(skuid.model.getModelsList(), t'id', 'objectName', 'recordsLimit', 'canRetrieveMoreRows', 'orderByClause']);**
Returns a list of all Models with specific Model properties selected
…
And the best part is, any of these tables can be dynamically ordered!