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!
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

olu adesina
23,007 Pointswhy is x undefined in my nested for loop
function createDeck() {
var suites = ['♠︎', '♣︎', '♥︎', '♦︎'];
var ranks = ['Ace', 'King', 'Queen', 'Jack', '10', '9', '8', '7', '6', '5', '4', '3', '2'];
var deck = [];
// add your code below here:
for (i = 0; i < suites.length; i++) {
for (x = 0; x < ranks.length; i++) { // I've ran it through the debugger and it says x underfined
console.log(ranks[x])
}
}
}
createDeck();
1 Answer

Jeff Wilton
16,646 PointsLooks like you're accidentally incrementing the i var instead of x in the second for loop:
for (x = 0; x < ranks.length; i++) {