Syntax
count(array, value)
Description
count() returns the number of elements with the specified value
Example
a=["fred", "jim", "fred", "bob"] println(count(a, "fred")) 2
count(array, value)
count() returns the number of elements with the specified value
a=["fred", "jim", "fred", "bob"] println(count(a, "fred")) 2