Find by values in JavaScript Array
Posted
by Ax
on Stack Overflow
See other posts from Stack Overflow
or by Ax
Published on 2010-04-07T10:26:27Z
Indexed on
2010/04/07
10:33 UTC
Read the original article
Hit count: 229
JavaScript
|array
I have such an array:
arr['key1'] = true;
arr['key2'] = true;
arr['key3'] = true;
...
arr['keyN'] = true;
How to determine, have anyone key a "false" value?
© Stack Overflow or respective owner