Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKylie Soderblom
3,890 PointsYour countWords() method is not returning the correct number of words.
const myString = { string: "Programming with Treehouse is fun!", countWords: function (){ return this.string.length; } }
I've tried return (this.string).length; I know I want the length method applied to the property 'string'. What am I missing?
const myString = {
string: "Programming with Treehouse is fun!",
countWords: function (){
return this.string.length;
}
}
1 Answer
Kylie Soderblom
3,890 Pointsok - reading thru other answers. Apparently, we need to split the string by spaces and then apply the length method. return this.string.split( ' ' ).length
Forgot that the string is one unit and not an array. It would have been helpful if they mentioned .split("") in the Get Help section.