Skip to content

Instantly share code, notes, and snippets.

@kesor
Created March 8, 2018 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kesor/e3cdd992a3cbd36b4fbf810435b8194a to your computer and use it in GitHub Desktop.
Save kesor/e3cdd992a3cbd36b4fbf810435b8194a to your computer and use it in GitHub Desktop.
Array.prototype.assoc = function(obj) { return ARR.find( function(iArr) { return iArr[0] == obj } ) }
const ARR = [ [ "a", "b", "c" ], [ 1, 2, 3 ], [ "a", 2 ] ]
ARR.assoc("a")
// > [ 'a', 'b', 'c' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment