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

code challenge: arrays in javascript deep dive

the code challenge says: Set the 'guides' that has placeholders for 42 elements but has no values stored in it.

I tried doing the array constructor, var guides = new array(42); but it said null.

I tried var guides = [1,2,3,] etc.. up to 42 but it said you have 0 undefined values, expecting 42

any suggestions? I didn't hear any thing about place holders in the video, I think that's what's throwing me off.

thanks!

3 Answers

nevermind. I figured it out

Please fill us in!

Ford Henley
Ford Henley
5,205 Points

var guides= new Array (42);

it turns out that "placeholders" just means they want commas. you have to make the array with 42 commas in it.