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

Trevor Fincher
Trevor Fincher
11,346 Points

Help...

This is where I'm at:

function arrayCounter (array) { if (typeof array === 'undefined'){ return 0; } return array.length(); };

I don't really know how to go at this one.

1 Answer

Hi Trevor,

you are forgetting your 'else' in your condition. Also length is a property, not a function. by typing length() you are calling a function. You need to lose the parentheses.

This is what it should look like:

function arrayCounter (array) { 
    if (typeof array === 'undefined') { 
        return 0; 
    } else {
        return array.length;
    }
};

Hope this helps you out. Cheers!