get


          // Get the Nth element in the matched element set OR
          // Get the whole matched element set as a clean array
          get: function( num ) {
                  //        <summary>
                  //                Access a single matched element. num is used to access the
                  //                Nth element matched.
                  //                Part of Core
                  //        </summary>
                  //        <returns type="Element" />
                  //        <param name="num" type="Number">
                  //                Access the element in the Nth position.
                  //        </param>
  
                  return num == undefined ?
  
                          // Return a 'clean' array
                          Array.prototype.slice.call( this ) :
  
                          // Return just the object
                          this[ num ];
          },