Dollar Sign In Devtools
These handy shortcuts can save you some time
- $_ returns the most recently evaluated expression
- $0 - $4 return the most recently stored DOM element inspect in the Elements panel. $0 returns the most recent, $1 returns the second most recent, etc.
> 10 * 10
100
> $_
100
> { "first": "foo", "middle": "bar", "last": "baz" }
{first: "foo", middle: "bar", last: "baz"}
> keys($_)
(3) ["first", "middle", "last"]
Check the docs here