Interestingly, the Chrome development tools support something like the Ruby inspect or Objective C description methods for printing a meaningful line instead of just showing the name of the object constructor when examining objects in the console.
Thus, in this case - instead of showing "Crossing, Crossing, Crossing, ...", some user string will be displayed for each object (generated by the method of this object).
ps. I know that there is a console.table method that can produce some good output, but it would be nice to have more universal formatting of objects.
source share