| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
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 falsevar 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| Back | FazBrowse Home | New Git URL |