contains_.contains(list, value, [fromIndex])
Alias: includes
Returns true if the value is present in the list. Uses indexOf internally, if list is an Array. Use fromIndex to start your search at a given index.
_.contains([1, 2, 3], 3); => true
contains_.contains(list, value, [fromIndex])
Alias: includes
Returns true if the value is present in the list. Uses indexOf internally, if list is an Array. Use fromIndex to start your search at a given index.
_.contains([1, 2, 3], 3); => true
Please login to continue.