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 trial

JavaScript JavaScript Foundations Functions Return Values

Functions , 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.

index.html
<!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

You 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!

There was an error in your code .(it said) :/

Ahmad, Richard solution works. Did you put it inside the script tags?

This 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 !

Ahmad you forgot to put "typeof" before each check.

if(typeof x === "undefined" || typeof x === "string" || typeof x === "number")

what does typeof do ?

It checks the type of the element.

Ok, I'll see what will happen. Thank You so much :)