- Underscore.JS - Home
- Underscore.JS - Overview
- Underscore.JS - Environment Setup
- Underscore.JS - Iterating Collection
- Underscore.JS - Processing Collection
- Underscore.JS - Iterating Array
- Underscore.JS - Processing Array
- Underscore.JS - Functions
- Underscore.JS - Mapping Objects
- Underscore.JS - Updating Objects
- Underscore.JS - Comparing Objects
- Underscore.JS - Utilities
- Underscore.JS - Chaining
- Underscore.JS Useful Resources
- Underscore.JS - Quick Guide
- Underscore.JS - Useful Resources
- Underscore.JS - Discussion
Underscore.JS - contains method
Syntax
_.contains(list, value, [fromIndex])
contains method returns true if a value is present in a given list. fromIndex can be used to search at given index.
Example
var _ = require('underscore');
var list = [1, 2, 3, 5]
//Example 1. check if any number is present
var result = _.contains(list, 2);
console.log(result);
//Example 2. check if any number is present from given index
var result = _.contains(list, 2, 2);
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
true false
underscorejs_processing_collection.htm
Advertisements