_.eq(value, other)
Performs a SameValueZero
comparison between two values to determine if they are equivalent.
Since
4.0.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if the values are equivalent, else false
.
Example
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
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .