Writing Multidemisional Array Jquery
I would like to ask on how to write Multidimensional Array in jQuery ? its oky if its in basic syntax, im still new to jQuery.
Solution 1:
Its Javascript, not JQuery that handles the arrays, so what you really want is a tutorial on multidimensional arrays in Javascript.
Basically you define one array, then reference it inside another array. For example:
var columns = newArray(3);
var rows = newArray(4);
rows[0] = columns;
This can then be accessed as follows:
rows[0][0]Solution 2:
there are no multidimensional arrays in javascript, but you can have an array whose elements are arrays
  square = [
      [1, 2, 3],
      [4, 5, 6],
      [7, 8, 9]
  ]
arrays don't have to be of the same length
  triangle = [
      [1, 2, 3],
      [4, 5],
      [6]
  ]
you can mix array and non-array elements
   wookie = [
        head,
    [hand, hand],
       belly,
     [foot, foot]
  ]
Post a Comment for "Writing Multidemisional Array Jquery"