JavaScript: last value printed in console

console, google-chrome, javascript

Solution

In Chrome and Firefox, you can use `$_`. It references the return value from the last evaluation.

Problem

Is there an equivalent to the Python `_` in JavaScript referencing the last value printed in the console? I'm especially interested in Chrome.

Original source