UNPKG

@stdlib/array

Version:
134 lines (79 loc) 3.22 kB
<!-- @license Apache-2.0 Copyright (c) 2024 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> # countSameValueZero > Count the number of elements in an array that are equal to a specified value. <!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> <section class="intro"> </section> <!-- /.intro --> <!-- Package usage documentation. --> <section class="usage"> ## Usage ```javascript var countSameValueZero = require( '@stdlib/array/base/count-same-value-zero' ); ``` #### countSameValueZero( x, value ) Counts the number of elements in an array that are equal to a specified value. ```javascript var x = [ 0, 1, 0, 1, 2 ]; var out = countSameValueZero( x, 1 ); // returns 2 ``` In contrast to an implementation using the strict equality operator `===`, the function treats `NaNs` as the same value. ```javascript var x = [ NaN, NaN, NaN ]; var out = countSameValueZero( x, NaN ); // returns 3 ``` In contrast to an implementation using the [SameValue Algorithm][@stdlib/array/base/count-same-value] (as specified in ECMAScript 5), the function does not distinguish between `+0` and `-0`. ```javascript var x = [ 0.0, -0.0, 0.0 ]; var out = countSameValueZero( x, 0.0 ); // returns 3 ``` </section> <!-- /.usage --> <!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="notes"> </section> <!-- /.notes --> <!-- Package usage examples. --> <section class="examples"> ## Examples <!-- eslint no-undef: "error" --> ```javascript var bernoulli = require( '@stdlib/random/array/bernoulli' ); var countSameValueZero = require( '@stdlib/array/base/count-same-value-zero' ); var x = bernoulli( 10, 0.5, { 'dtype': 'generic' }); console.log( x ); var n = countSameValueZero( x, 1 ); console.log( n ); ``` </section> <!-- /.examples --> <!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="references"> </section> <!-- /.references --> <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> <section class="related"> </section> <!-- /.related --> <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="links"> [@stdlib/array/base/count-same-value]: https://github.com/stdlib-js/array/tree/main/base/count-same-value </section> <!-- /.links -->