I have an object as such that has been generated by using the lodash _.zipObject() function. So I have 2 arrays, one of locations, one of numbers.
var locs = {'Aberdeen': 304, 'Aberystwith': 109, 'Belfast': 219, 'Birmingham': 24, 'Brighton': 147, …}
I need to return the key based on an input value. For example, function(304) would return 'Aberdeen'.
I've tried _.findkey(locs, 304); but this just returns undefined. Any other attempt I've tried always returns either undefined or -1. Not really sure where to go from here.