Skip to content

Commit

Permalink
Issue HowProgrammingWorks#4: Task four.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Porokhnya committed Sep 14, 2019
1 parent cdc1347 commit 3fd28f5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Exercises/4-count-types.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
'use strict';

const countTypesInArray = null;

const countTypesInArray = arr => {
const obj = {};
for (const item of arr) {
const type = typeof item;
type in obj ? obj[type]++ : obj[type] = 1;
}
return obj;
};

module.exports = { countTypesInArray };

0 comments on commit 3fd28f5

Please sign in to comment.