eq source npm

_.eq(value, other)

Performs a SameValueZero comparison between two values to determine if they are equivalent.

Arguments

  1. value (*)

    The value to compare.

  2. other (*)

    The other value to compare.

Returns (boolean)

Returns true if the values are equivalent, else false.

Example

var object = { 'user': 'fred' };
var other = { 'user': 'fred' };

_.eq(object, object);
// => true

_.eq(object, other);
// => false

_.eq('a', 'a');
// => true

_.eq('a', Object('a'));
// => false

_.eq(NaN, NaN);
// => true