Skip to content

Instantly share code, notes, and snippets.

@willgm
Created August 29, 2013 02:10
Show Gist options
  • Save willgm/6373564 to your computer and use it in GitHub Desktop.
Save willgm/6373564 to your computer and use it in GitHub Desktop.
Find key by value, with underscore.js in CoffeeScript
findKeyByValue = (obj, value) ->
key = null
_.find obj, (v, k) ->
if v is value
key = k
true
key
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment