Reputation: 1736
I am not clear with these two term
Filter : List out all records with match of 3 characters, where as
Find : Retrieve exact match record.
Correct me if am wrong
Upvotes: 1
Views: 104
Reputation: 1568
filter method returns all records of store which match to your given fields and value. find method returns you index of your first match record of your given fields and value.
Upvotes: 1