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 trialMaurizio Galli
23,424 PointsWhat's wrong with this code?
Trying hard to figure out where is my error. Please help!
function arrayCounter(a)
{
if (typeOf a === 'string' || typeOf a === 'number' || typeOf a === 'undefined') {
return 0;
} else {
return a.length;
}
}
2 Answers
Xander Taylor
12,390 PointsNice catch! Good old camelCase :)
Sergio Alen
26,726 Pointscheers, was looking for this answer too, but my problem was I didn't add the || between arguments.. I thought with commas was good..
Maurizio Galli
23,424 PointsMaurizio Galli
23,424 PointsSOLVED! Please forgive me! I've used "typeof" instead of "typeOf". I'm not familiar with CaSe SENsitiVe JS yet ;)