服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.includes(collection, value, fromIndex=0)

检查值是否在集合中。 如果collection是一个字符串,则检查是否有值的子字符串,否则使用SameValueZero进行相等性比较。 如果fromIndex为负数,它将用作从收集结束的偏移量。

初始

0.1.0

参数
  1. collection (Array | Object | string):要检查的集合。
  2. value (*):要搜索的值。
  3. [fromIndex=0] (数字):从中搜索的索引。
返回

(boolean): 如果找到值,则返回true,否则返回false。

_.includes([1, 2, 3], 1);
// => true
 
_.includes([1, 2, 3], 1, 2);
// => false
 
_.includes({ 'a': 1, 'b': 2 }, 1);
// => true
 
_.includes('abcd', 'bc');
// => true