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 trialAhmad Almoghraby
6,769 PointsFunctions , Returns
I would Really Appreciate it if someone can answer this question! 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.
<!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>
function arrayCounter (num) {
if (num == 'undefined') {
return num.length;
}
return 0;
}
console.log(arrayCounter());
</script>
</body>
</html>
2 Answers
Richard Barkinskiy
10,663 PointsYou will need to test to see if the parameter (array) is either undefined, string, or number and if it is, return "0" otherwise return the length of the parameter (array).
Here's my code as an example:
function arrayCounter(x){
if(typeof x === "undefined" || typeof x === "string" || typeof x === "number"){
return 0;
}else{
return x.length;
}
}
Good luck!
Ahmad Almoghraby
6,769 PointsOk, I'll see what will happen. Thank You so much :)
Ahmad Almoghraby
6,769 PointsAhmad Almoghraby
6,769 PointsThere was an error in your code .(it said) :/
Hugo Paz
15,622 PointsHugo Paz
15,622 PointsAhmad, Richard solution works. Did you put it inside the script tags?
Ahmad Almoghraby
6,769 PointsAhmad Almoghraby
6,769 PointsThis is how I did it:
<script> function arrayCounter (x) { if (x === 'undefined' || x === 'strings' || x === 'numbers') { return 0; } else { return x.length; } }
console.log(arrayCounter()); </script>
If it is still wrong Please let me know !
Hugo Paz
15,622 PointsHugo Paz
15,622 PointsAhmad you forgot to put "typeof" before each check.
if(typeof x === "undefined" || typeof x === "string" || typeof x === "number")
Ahmad Almoghraby
6,769 PointsAhmad Almoghraby
6,769 Pointswhat does typeof do ?
Hugo Paz
15,622 PointsHugo Paz
15,622 PointsIt checks the type of the element.