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

Syed Mahmoodi
Syed Mahmoodi
4,744 Points

Methods Part 1: Elements task 3 -On about line 20, add the 'firstWord' variable to the beginning of the array 'saying'.

<script>
      var spareWords = ["The","chimney","sweep's","dog"];
      var saying = ["quick", "brown", "fox", "jumps", "over", "the", "lazy"];
      var firstWord = spareWords.shift();
      var lastWord = spareWords.pop();
      saying.unShift(firstWord);
      saying;
    </script>

I Tried adding

saying.unShift("firstWord"); 

i know this is wrong as we can't pass the variable with " ".

saying.unShift(firstWord);

passing the variable without " "

saying.unShift(firstWord.toString());

everything displays the error You're missing the 'unshift' method and the 'firstWord' variable.

2 Answers

Chase Lee
Chase Lee
29,275 Points

Try doing unShift without a capital S. Like this:

saying.unshift(the "firstWord" variable probablay goes here);
Syed Mahmoodi
Syed Mahmoodi
4,744 Points

Thanks it works..! but why the method without camelcase, i didn't notice that while watching the video.

for the record, how many other methods or functions we have without camelcase.

Chase Lee
Chase Lee
29,275 Points

To be honest I don't really know. The only reason I knew what to do for this one is because it said: 'unshift', not 'unShift'.

"unshift" does not use camel case because it is only one word. "Un" is a prefix of, not a separate word from, "shift."