-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDCC-9.js
25 lines (21 loc) · 964 Bytes
/
DCC-9.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
// - Write a function named charCount that accepts a single string argument and returns an object that represents the count of each character in the string.
// - The returned object should have keys that represent the character with its value set to the how many times the character appears in the string argument.
// - Upper and lower case characters should be counted separately.
// - Space characters should be count too.
// Examples:
// charCount('hello') //=> { h: 1, e: 1, l: 2, o: 1 }
// charCount('Today is fantastic!') //=> { T: 1, o: 1, d: 1, a: 3, y: 1, ' ': 2, i: 2, s: 2, f: 1, n: 1, t: 2, c: 1, '!': 1 }
// -----------------------------------------------------------------*/
// // Your solution for 09-charCount here:
const charCount = (str) => {
let countObj = {}
for(let i = 0; i < str.length; i++){
const char = str[i]
if (countObj[char]){
countObj[char]++
} else {
countObj[char] = 1
}
}
return countObj
}