What does ==$0 (double equals dollar zero) mean in Chrome Developer Tools?
It’s the last selected DOM node index. Chrome assigns an index to each DOM node you select. So $0 will always point to the last node you selected, while $1 will point to the node you selected before that. Think of it like a stack of most recently selected nodes. As an example, consider the following Now you opened … Read more