-
Notifications
You must be signed in to change notification settings - Fork 0
count
Subhajit Sahu edited this page Jan 28, 2021
·
15 revisions
Count no. of true values.
boolean.count(a, b, ... [:package:] [:smiley_cat:] [:running:] [:moon:] [:ledger:] [:newspaper:] [:blue_book:]
```java
const boolean = require('extra-boolean');
boolean.count(true, true);
// 2
boolean.count(true, false);
// 1
boolean.count(true, true, true, false);
// 3 ^ ^ ^
boolean.count(false, true, false, false);
// 1 ^