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 trialSam Blaha
15,146 PointsDo negative indices work in JavaScript?
I'm new to JavaScript but have some experience in other languages. Isn't it possible to grab the last index using -1? It failed me here....
var players = ['Jim', 'Shawna', 'Andrew', 'Lora', 'Aimee', 'Nick'];
console.log(players[0]);
console.log(players[-1]);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Elijah Quesada
Front End Web Development Techdegree Graduate 32,965 PointsYes, there's a few ways to get the last item in an array.
An array index starts at 0, but the length will return 6.
The length property of an array does not start off on the 0 index. Therefore, if you type console.log(players[players.length]) it will come back undefined because there's nothing at index 6. Index stops at 5.
With that in mind you can use the example below.
console.log(players[players.length - 1]);