Javascript Array inspect()
inspect()
Array.prototype.inspect = function() { return '[' + this.map(Object.inspect).join(', ') + ']'; };