The code writes a function that takes a string consisting of one or more space separated words, and returns an object that shows the number of words of different sizes.
function wordSizes(sentence = ''){
if(!sentence){
return {};
}
return sentence.split(' ').reduce((acc,v)=>{
acc[v.length] = acc[v.length] ? [...acc[v.length], v] : [v];
return acc;
},{});
}
console.log(wordSizes("What's up doc?")); // {2: "up", 4: "doc?", 6: "What's"}
I want to return this instead where the actual word is replaced by the length count. Can some one help me.{ "2": 1, "4": 1, "6": 1 }
You were on the right track
or
or