Created
March 8, 2018 16:03
-
-
Save kesor/e3cdd992a3cbd36b4fbf810435b8194a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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