Skip to content Skip to sidebar Skip to footer

What Is $1 And $2 Etc In Safari Dev Tools Js Console Window?

When I run Dev Tools on Safari and use querySelector in console window. I get correct values and then $1 and $2 so on... Can anyone help understand what they mean?

Solution 1:

Chrome:

$0 - $4

Dev Tools remembers the last five DOM elements (or JavaScript heap objects) that you've selected in the tab (or Profiles panel). It makes those objects available as $0, $1, $2, $3, and $4. $0 returns the most recently selected element or JavaScript object, $1 returns the second most recently selected one, and so on.

https://developer.chrome.com/devtools/docs/commandline-api#0-4

Safari:

$1..4

Represents the last, second to last, third to last, and fourth to last selected node in the content browser, respectively.

https://developer.apple.com/library/mac/documentation/AppleApplications/Conceptual/Safari_Developer_Guide/Console/Console.html

Post a Comment for "What Is $1 And $2 Etc In Safari Dev Tools Js Console Window?"