Jump to content

[SOLVED] 2d array problems


NME

Recommended Posts

? what do u mean? am i making 2d arrays incorrectly? 

 

im under the impression that to make 2d arrays in javascript, one must do the following: (ie for a 2x2 array).

 

var stack = new Array(2);

 

stack[1] = new Array(2);

stack[2] = new Array(2);

stack[1,1]="hello";

stack[2,1]="world";

document.write(stack[1,1] + " " + stack[2,1]);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.