Home >Web Front-end >JS Tutorial >What is the purpose of the $ variable in Chrome\'s Developer Tools console?
$ Variable in Chrome
Question:
While exploring the developer tools of Chrome on a page without jQuery, a peculiar behavior was observed. Typing "$" into the console returned a function with native code. This function could not be accessed through window['$'], document['$'], or this['$'], and its purpose remains enigmatic.
Answer:
The $ variable in Chrome's devtools console has undergone several changes. It currently serves as an alias for document.querySelector and provides additional functionality:
Notably, $$ does not literally call document.querySelectorAll(), as it returns an array instead of a NodeList.
Chrome is the only browser that exposes this $ variable, which serves as a convenient shortcut for interacting with DOM elements and accessing various expressions and objects within the developer tools console.
The above is the detailed content of What is the purpose of the $ variable in Chrome\'s Developer Tools console?. For more information, please follow other related articles on the PHP Chinese website!