Basic Methods.get()On this page.get()Variations.get( ): array<Element>Retrieve all of the elements matched by the DoMini objectfor ( el of $( "p" ).get() ) { console.log( el.innerText );}.get( Int n ): Element|nullRetrieve one of the elements matched by the DoMini objectconsole.log( $( "p" ).get(0).innerText );