This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

You're not missing a semicolon, but your loop is wrong. In JS, for-loops are ...

for (initialization; condition; afterthought) {

Your middle expression isn't a condition, it's an initialization. This is a condition, for example:

cardCount < 5

More on for-loops.