Test if two arguments are both generic arrays and have the same values.
var isSameArray = require( '@stdlib/assert/is-same-array' );Tests if two arguments are both generic arrays and have the same values.
var x = [ 1.0, 2.0 ];
var y = [ 1.0, 2.0 ];
var bool = isSameArray( x, y );
// returns true
bool = isSameArray( x, [ -1.0, 2.0 ] );
// returns false- In contrast to the strict equality operator
===, the function distinguishes between+0and-0and treatsNaNsas the same value.
var isSameArray = require( '@stdlib/assert/is-same-array' );
var x = [ 1.0, 2.0, 3.0 ];
var y = [ 1.0, 2.0, 3.0 ];
var out = isSameArray( x, y );
// returns true
x = [ -0.0, 0.0, -0.0 ];
y = [ 0.0, -0.0, 0.0 ];
out = isSameArray( x, y );
// returns false
x = [ NaN, NaN, NaN ];
y = [ NaN, NaN, NaN ];
out = isSameArray( x, y );
// returns true@stdlib/assert/is-array: test if a value is an array.@stdlib/assert/is-equal-array: test if two arguments are both generic arrays and have equal values.@stdlib/assert/is-same-array-like: test if two arguments are both array-like and have the same values.@stdlib/assert/is-same-value: test if two arguments are the same value.