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 trialname564681351614
3,497 Points2 array methods at once?
For the first question in this quiz it's asking us to add a word to the beginning of the array and simultaneously remove it. Isn't that like using unshift() and shift() at the same time?
<!DOCTYPE html>
<html lang="en">
<head>
<title> JavaScript Foundations: Arrays</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>JavaScript Foundations</h1>
<h2>Arrays: Methods Part 1</h2>
<script>
var spareWords = ["The","chimney","sweep's","dog"];
var saying = ["quick", "brown", "fox", "jumps", "over", "the", "lazy"];
var firstWord = spareWords;
spareWords.unshift(firstWord);
spareWords.shift();
var lastWord = spareWords;
saying;
saying;
</script>
</body>
</html>
1 Answer
Kelly von Borstel
28,880 PointsThe wording of the question is a little confusing... They're not actually asking you to add a word to the beginning of an array, but simply to assign the first word of the "spareWords" array to a variable named "firstWord".
var firstWord = spareWords.shift();