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*

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
3
  • what is || ?? Commented Jan 15, 2017 at 19:11
  • It is an OR operator , it means , if the value on the left hand side to || is defined then it will be assigned to blocks[columnIndex] OR its value will be the one on the right side i.e [] Commented Jan 15, 2017 at 19:14
  • No problem. Happy to help :) Commented Jan 15, 2017 at 19:16

lang-js

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