Quick query elements in the Console

The Chrome DevTools provides two shortcut methods to query the elements in the page.
MethodIndentical method
`$``document.querySelector`
`$$``document.querySelectorAll`
The following screenshot demonstrates how to use them in the Console.
Query elements in the Console
Query elements in the Console

See also