Author: Not specified | Language: javascript |
Description: Not specified | Timestamp: 2018-04-17 10:28:55 +0000 |
View raw paste | Reply |
- // _.matchesProperty
- console.log( _.find(data, ['action','sing']) ); // {action:'sing'}
- // _.matches
- console.log( _.find(data, {action:'dance'}) ); // {action:'dance'}
- console.log( _.find(data, 'action') ); // {action:'walk'}
View raw paste | Reply |