UNPKG
go-random
Version:
latest (1.0.3)
1.0.3
1.0.0
Random value generation utilities
github.com/koyote130708/go-random
koyote130708/go-random
go-random
/
test
/
utils
/
count.js
9 lines
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports =
function
(
array
, value
)
{
var
count =
0
;
for
(
var
i =
0
; i <
array
.length; i++) {
if
(
array
[i] === value) { count++; } }
return
count; };