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 trialkingsley Emeka
Full Stack JavaScript Techdegree Graduate 18,238 PointsMy test script does not pass, throws an error
My test script throws an error even thou it same as the instructor's own.
var expect = require("chai").expect;
function titleCase(title) {
var words = title.split("");
var titleCasedWords = words.map(function(word) {
return word[0].toUpperCase() + word.substring(1);
});
return titleCasedWords.join("");
}
expect(titleCase("the great mouse detective")).to.be.a("string");
expect(titleCase("a")).to.equal("A");
expect(titleCase("vertigo")).to.equal("Vertigo");
expect(titleCase("the great mouse detective")).to.equal(
"The great Mouse Detective"
);
1 Answer
KRIS NIKOLAISEN
54,971 Points1) There is a space between the empty double quotes - here:
var words = title.split(" ");
and here:
return titleCasedWords.join(" ");
2) The G in the 2nd Great should be uppercase here:
expect(titleCase("the great mouse detective")).to.equal("The Great Mouse Detective")
kingsley Emeka
Full Stack JavaScript Techdegree Graduate 18,238 Pointskingsley Emeka
Full Stack JavaScript Techdegree Graduate 18,238 PointsThanks.