Skip to content

Instantly share code, notes, and snippets.

@kokudori
Created November 16, 2011 08:58
Show Gist options
  • Save kokudori/1369625 to your computer and use it in GitHub Desktop.
Save kokudori/1369625 to your computer and use it in GitHub Desktop.
jQueryのget
get: function( num ) {
return num == null ?
// Return a 'clean' array
this.toArray() :
// Return just the object
( num < 0 ? this[ this.length + num ] : this[ num ] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment