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 trialWilliam J. Terrell
17,403 PointsStage 5: Functions Code Challenge
I am quite stuck on this, and have been for a while. For some reason, Arrays just isn't clicking with me. The challenge is as follows:
"Around line 17, create a function named 'arrayCounter' that takes in a parameter which is an array. The function must return the length of an array passed in or 0 if a 'string', 'number' or 'undefined' value is passed in."
Thus far, this is the code I have...
var x = ['string', '3', true];
function arrayCounter (x) {
if (typeof x === 'array') {
return x.length;
} else {
return 0;
}
}
Any feedback would be greatly appreciated.
Thanks!
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript Foundations: Functions</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>JavaScript Foundations</h1>
<h2>Functions: Return Values</h2>
<script>
var x = ['string', '3', true];
function arrayCounter (x) {
if typeof x === 'array' {
return x.length;
} else {
return 0;
}
}
</script>
</body>
</html>
3 Answers
Chris Shaw
26,676 PointsHi William,
You have a good idea of what's required but aren't following what the task is asking for, see the below.
- You've created a variable
x
which isn't needed, this can be omitted - There's no
typeof
value array, you need to check against string, number and undefined
function arrayCounter(array) {
if (typeof array === 'string' || typeof array === 'number' || typeof array === 'undefined') {
return 0;
}
return array.length;
}
Happy coding!
William J. Terrell
17,403 PointsThanks everyone for all the assistance!
William Li
Courses Plus Student 26,868 PointsYour condition check missed something.
return 0 if a 'string', 'number' or 'undefined' value is passed in.
Treasure Porth
Treehouse TeacherPeople had a few good ideas in this thread: https://teamtreehouse.com/forum/i-am-struggling-with-this-challenge-question
Justin Swatloski
5,769 PointsJustin Swatloski
5,769 PointsThe issue is that
if (typeof x === 'array') {
is never going to return true. When an array goes through the typeOf operator, it returns a value of 'object'.
One possible solution is to replace it with
if (Object.prototype.toString.call( x ) === '[object Array]' ) {
Arrays that are tested with the toString method here should return '[object Array]', and you can build your code from there.
Hope this helps!