Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Lang” Methods

_.eq(value, other)

执行 SameValueZero 比较两者的值,来确定它们是否相等。

添加版本

4.0.0

参数

  1. value (*): 要比较的值。
  2. other (*): 另一个要比较的值。

返回

(boolean): 如果两个值相等返回 true ,否则返回 false

例子

var object = { 'a'1 };
var other = { 'a'1 };
 
_.eq(object, object);
// => true
 
_.eq(object, other);
// => false
 
_.eq('a', 'a');
// => true
 
_.eq('a', Object('a'));
// => false
 
_.eq(NaN, NaN);
// => true

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods