Skip to content

Instantly share code, notes, and snippets.

@xuyuji9000
Created May 11, 2017 15:42
Show Gist options
  • Save xuyuji9000/76b7a3d5962a6dfc102c1e9c68031eb3 to your computer and use it in GitHub Desktop.
Save xuyuji9000/76b7a3d5962a6dfc102c1e9c68031eb3 to your computer and use it in GitHub Desktop.
let _ = require('lodash')
let thing = [
{"a": 123},
{"a": 456},
{"abc": 6789},
]
console.log(typeof(thing))
let result = _.pickBy(thing, function(value, key){
return value.a==123
})
console.log(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment