Nothing substantial. It's just that the Google Chrome console is smart enough to group identical lines and update a counter indicating how many repetitions there were, instead of printing each identical magazine in a new line.
For example, if you have the following loop:
for (var i = 0; i < 100; i++) { console.log("a"); }β
The Chrome console will display one line with (100) a , while others, such as Internet Explorer development tools, will print a hundred times.
source share