Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Populating An Array In JavaScript

JavaScript:

I am trying to populate an array.

var blocks = [];
var blocksCount = 7;
for (var columnIndex = 0; columnIndex < blocksCount; columnIndex++) {
 for (var rowIndex = 0; rowIndex < blocksCount; rowIndex++) {
 blocks[columnIndex][rowIndex] = 'Some Value';
 }
}

The error message says: undefined is not an object!

What do I have to change to make it work?

Answer*

Draft saved
Draft discarded
Cancel

lang-js

AltStyle によって変換されたページ (->オリジナル) /