This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Jeff Dixon
over 11 years

Why does this pass for Return; Meet Arrays?

I understand how to write this variable correctly however, I am wondering why this passed on my first attempt when it returned an error— TypeError: Object #

var junk = ["Kristen's","Boring", 11, 3];  
console.logjunk();

Edit by @joahg: Fixed code formatting

Answer 5054da6a4d8549000205bbbb

3 votes

Permalink

Your parentheses are in the wrong place for your console.log() statement- you need to have it like this:

console.log(junk);

That should clear it up- hope it helps!

points
Submitted by Joah Gerstenberg
over 11 years