-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountOnly.js
More file actions
42 lines (35 loc) · 899 Bytes
/
Copy pathcountOnly.js
File metadata and controls
42 lines (35 loc) · 899 Bytes
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
const assertEqual = function(actual, expected) {
if (actual === expected) {
console.log(`The '${actual}' and the '${expected}' are the same✅`);
} else console.assert(actual === expected, "❌");
};
const countOnly = function (allItems , itemsToCount) {
const results = {};
for (const item of allItems) {
if (itemsToCount[item]){
if (results[item]) {
results[item] += 1;
} else {
results[item] = 1;
}
console.log(item);
};
};
return results;
}
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);