-
Notifications
You must be signed in to change notification settings - Fork 0
/
countOnly.js
48 lines (43 loc) · 1018 Bytes
/
countOnly.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const assertEqual = function(actual, expected) {
if (actual === expected) {
console.log(`Assertion Passed: [" ${actual}] === [" ${expected} "]`);
} else {
console.log(`Assertion Failed: [" ${actual}] === [" ${expected} "]`);
}
};
// allItems: an array of strings that we need to look through
// itemsToCount: an object specifying what to count
const countOnly = function (allItems, itemsToCount) {
let output = {};
for (let item of allItems) {
if (itemsToCount[item]) {
if (output[item]) {
output[item] += 1;
} else {
output[item] = 1;
}
}
}
return output;
};
const firstNames = [
"Karl",
"Salima",
"Agouhanna",
"Fang",
"Kavith",
"Jason",
"Salima",
"Fang",
"Joe",
];
const result1 = countOnly(firstNames, {
Jason: true,
Karima: true,
Fang: true,
Agouhanna: false,
});
assertEqual(result1["Jason"], 1);
assertEqual(result1["Karima"], undefined);
assertEqual(result1["Fang"], 2);
assertEqual(result1["Agouhanna"], undefined);