How to fill multidimensional array in javascript?












0















I tried to get this to work, but the outer loop stops after second iteration, and everything that's after it does not execute(just like it was the end of the script). I want to fill two dimensional array with any character(here i used 'q' as an example)



var A=[,];
for(var i=0;i<12;i++){
for(var j=0;j<81;j++){
A[i][j]='q';
}
}


It didn't work, so i put alert(i+' '+j); to see if it's even executing, and, as i wrote before, it stops after second iteration of outer loop, and then ignores rest of the script.



All I want is to have this array filled with same character in the given range(12 rows, 81 columns in this specific case), so if there's no hope in this method, i'll be glad to see one that works.










share|improve this question

























  • You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

    – CertainPerformance
    Jan 1 at 1:00











  • A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

    – Countingstuff
    Jan 1 at 1:09











  • Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

    – Heretic Monkey
    Jan 1 at 1:25
















0















I tried to get this to work, but the outer loop stops after second iteration, and everything that's after it does not execute(just like it was the end of the script). I want to fill two dimensional array with any character(here i used 'q' as an example)



var A=[,];
for(var i=0;i<12;i++){
for(var j=0;j<81;j++){
A[i][j]='q';
}
}


It didn't work, so i put alert(i+' '+j); to see if it's even executing, and, as i wrote before, it stops after second iteration of outer loop, and then ignores rest of the script.



All I want is to have this array filled with same character in the given range(12 rows, 81 columns in this specific case), so if there's no hope in this method, i'll be glad to see one that works.










share|improve this question

























  • You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

    – CertainPerformance
    Jan 1 at 1:00











  • A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

    – Countingstuff
    Jan 1 at 1:09











  • Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

    – Heretic Monkey
    Jan 1 at 1:25














0












0








0








I tried to get this to work, but the outer loop stops after second iteration, and everything that's after it does not execute(just like it was the end of the script). I want to fill two dimensional array with any character(here i used 'q' as an example)



var A=[,];
for(var i=0;i<12;i++){
for(var j=0;j<81;j++){
A[i][j]='q';
}
}


It didn't work, so i put alert(i+' '+j); to see if it's even executing, and, as i wrote before, it stops after second iteration of outer loop, and then ignores rest of the script.



All I want is to have this array filled with same character in the given range(12 rows, 81 columns in this specific case), so if there's no hope in this method, i'll be glad to see one that works.










share|improve this question
















I tried to get this to work, but the outer loop stops after second iteration, and everything that's after it does not execute(just like it was the end of the script). I want to fill two dimensional array with any character(here i used 'q' as an example)



var A=[,];
for(var i=0;i<12;i++){
for(var j=0;j<81;j++){
A[i][j]='q';
}
}


It didn't work, so i put alert(i+' '+j); to see if it's even executing, and, as i wrote before, it stops after second iteration of outer loop, and then ignores rest of the script.



All I want is to have this array filled with same character in the given range(12 rows, 81 columns in this specific case), so if there's no hope in this method, i'll be glad to see one that works.







javascript arrays loops






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 1 at 1:13









Jack Bashford

10.7k31643




10.7k31643










asked Jan 1 at 0:57









zeregzesiszeregzesis

81




81













  • You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

    – CertainPerformance
    Jan 1 at 1:00











  • A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

    – Countingstuff
    Jan 1 at 1:09











  • Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

    – Heretic Monkey
    Jan 1 at 1:25



















  • You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

    – CertainPerformance
    Jan 1 at 1:00











  • A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

    – Countingstuff
    Jan 1 at 1:09











  • Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

    – Heretic Monkey
    Jan 1 at 1:25

















You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

– CertainPerformance
Jan 1 at 1:00





You're only initializing A with 2 items. Always check your console for errors before asking why things aren't working. Uncaught TypeError: Cannot set property '0' of undefined Create an array to assign to [i] inside the outer loop.

– CertainPerformance
Jan 1 at 1:00













A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

– Countingstuff
Jan 1 at 1:09





A neat looking way is something like const A = Array(12).fill(0).map(() => Array(81).fill("q"));

– Countingstuff
Jan 1 at 1:09













Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

– Heretic Monkey
Jan 1 at 1:25





Possible duplicate of Efficient way to declare and populate multidimensional array in Javascript

– Heretic Monkey
Jan 1 at 1:25












3 Answers
3






active

oldest

votes


















1














var A=[, ];



^ This line declares a two dimensional array of size 1x2. Try this instead:



var A = ;
for (var i = 0; i < 12; i++) {
A[i] = ;
for (var j = 0; j < 81; j++) {
A[i][j] = 'q';
}
}





share|improve this answer


























  • @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

    – johnheroy
    Jan 1 at 1:11



















0














You need to initialise a new array for i each time the first loop runs, and you don't need to set the layout of the array before you create it (Remove the , inside the declaration of A). Try this:






var A = ;
for (var i = 0; i < 12; i++) {
A[i] = ;
for (var j = 0; j < 81; j++) {
A[i][j] = 'q';
}
}
console.log(A);

.as-console-wrapper { 
max-height: 100% !important;
top: 0;
}








share|improve this answer

































    0

















    const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

    let twoDArray =
    for(i=0; i<12; i++){
    twoDArray.push(range(0,81,1))
    }

    console.log(twoDArray)





    Alternative






    function genrateTwoDArray({
    rows,
    columns,
    defaultValue
    }){ return Array.from({ length:rows}, () => (
    Array.from({length: columns}, ()=> defaultValue )
    ))
    }
    console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))








    share|improve this answer

























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53992415%2fhow-to-fill-multidimensional-array-in-javascript%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      var A=[, ];



      ^ This line declares a two dimensional array of size 1x2. Try this instead:



      var A = ;
      for (var i = 0; i < 12; i++) {
      A[i] = ;
      for (var j = 0; j < 81; j++) {
      A[i][j] = 'q';
      }
      }





      share|improve this answer


























      • @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

        – johnheroy
        Jan 1 at 1:11
















      1














      var A=[, ];



      ^ This line declares a two dimensional array of size 1x2. Try this instead:



      var A = ;
      for (var i = 0; i < 12; i++) {
      A[i] = ;
      for (var j = 0; j < 81; j++) {
      A[i][j] = 'q';
      }
      }





      share|improve this answer


























      • @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

        – johnheroy
        Jan 1 at 1:11














      1












      1








      1







      var A=[, ];



      ^ This line declares a two dimensional array of size 1x2. Try this instead:



      var A = ;
      for (var i = 0; i < 12; i++) {
      A[i] = ;
      for (var j = 0; j < 81; j++) {
      A[i][j] = 'q';
      }
      }





      share|improve this answer















      var A=[, ];



      ^ This line declares a two dimensional array of size 1x2. Try this instead:



      var A = ;
      for (var i = 0; i < 12; i++) {
      A[i] = ;
      for (var j = 0; j < 81; j++) {
      A[i][j] = 'q';
      }
      }






      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited Jan 1 at 1:10

























      answered Jan 1 at 1:05









      johnheroyjohnheroy

      32615




      32615













      • @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

        – johnheroy
        Jan 1 at 1:11



















      • @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

        – johnheroy
        Jan 1 at 1:11

















      @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

      – johnheroy
      Jan 1 at 1:11





      @MarkMeyer I forgot A[i] = ; on the third line when I reformatted the code to make the stack overflow form validation for multiline code happy :) Nice catch!

      – johnheroy
      Jan 1 at 1:11













      0














      You need to initialise a new array for i each time the first loop runs, and you don't need to set the layout of the array before you create it (Remove the , inside the declaration of A). Try this:






      var A = ;
      for (var i = 0; i < 12; i++) {
      A[i] = ;
      for (var j = 0; j < 81; j++) {
      A[i][j] = 'q';
      }
      }
      console.log(A);

      .as-console-wrapper { 
      max-height: 100% !important;
      top: 0;
      }








      share|improve this answer






























        0














        You need to initialise a new array for i each time the first loop runs, and you don't need to set the layout of the array before you create it (Remove the , inside the declaration of A). Try this:






        var A = ;
        for (var i = 0; i < 12; i++) {
        A[i] = ;
        for (var j = 0; j < 81; j++) {
        A[i][j] = 'q';
        }
        }
        console.log(A);

        .as-console-wrapper { 
        max-height: 100% !important;
        top: 0;
        }








        share|improve this answer




























          0












          0








          0







          You need to initialise a new array for i each time the first loop runs, and you don't need to set the layout of the array before you create it (Remove the , inside the declaration of A). Try this:






          var A = ;
          for (var i = 0; i < 12; i++) {
          A[i] = ;
          for (var j = 0; j < 81; j++) {
          A[i][j] = 'q';
          }
          }
          console.log(A);

          .as-console-wrapper { 
          max-height: 100% !important;
          top: 0;
          }








          share|improve this answer















          You need to initialise a new array for i each time the first loop runs, and you don't need to set the layout of the array before you create it (Remove the , inside the declaration of A). Try this:






          var A = ;
          for (var i = 0; i < 12; i++) {
          A[i] = ;
          for (var j = 0; j < 81; j++) {
          A[i][j] = 'q';
          }
          }
          console.log(A);

          .as-console-wrapper { 
          max-height: 100% !important;
          top: 0;
          }








          var A = ;
          for (var i = 0; i < 12; i++) {
          A[i] = ;
          for (var j = 0; j < 81; j++) {
          A[i][j] = 'q';
          }
          }
          console.log(A);

          .as-console-wrapper { 
          max-height: 100% !important;
          top: 0;
          }





          var A = ;
          for (var i = 0; i < 12; i++) {
          A[i] = ;
          for (var j = 0; j < 81; j++) {
          A[i][j] = 'q';
          }
          }
          console.log(A);

          .as-console-wrapper { 
          max-height: 100% !important;
          top: 0;
          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 1 at 1:20

























          answered Jan 1 at 1:12









          Jack BashfordJack Bashford

          10.7k31643




          10.7k31643























              0

















              const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

              let twoDArray =
              for(i=0; i<12; i++){
              twoDArray.push(range(0,81,1))
              }

              console.log(twoDArray)





              Alternative






              function genrateTwoDArray({
              rows,
              columns,
              defaultValue
              }){ return Array.from({ length:rows}, () => (
              Array.from({length: columns}, ()=> defaultValue )
              ))
              }
              console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))








              share|improve this answer






























                0

















                const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

                let twoDArray =
                for(i=0; i<12; i++){
                twoDArray.push(range(0,81,1))
                }

                console.log(twoDArray)





                Alternative






                function genrateTwoDArray({
                rows,
                columns,
                defaultValue
                }){ return Array.from({ length:rows}, () => (
                Array.from({length: columns}, ()=> defaultValue )
                ))
                }
                console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))








                share|improve this answer




























                  0












                  0








                  0










                  const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

                  let twoDArray =
                  for(i=0; i<12; i++){
                  twoDArray.push(range(0,81,1))
                  }

                  console.log(twoDArray)





                  Alternative






                  function genrateTwoDArray({
                  rows,
                  columns,
                  defaultValue
                  }){ return Array.from({ length:rows}, () => (
                  Array.from({length: columns}, ()=> defaultValue )
                  ))
                  }
                  console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))








                  share|improve this answer


















                  const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

                  let twoDArray =
                  for(i=0; i<12; i++){
                  twoDArray.push(range(0,81,1))
                  }

                  console.log(twoDArray)





                  Alternative






                  function genrateTwoDArray({
                  rows,
                  columns,
                  defaultValue
                  }){ return Array.from({ length:rows}, () => (
                  Array.from({length: columns}, ()=> defaultValue )
                  ))
                  }
                  console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))








                  const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

                  let twoDArray =
                  for(i=0; i<12; i++){
                  twoDArray.push(range(0,81,1))
                  }

                  console.log(twoDArray)





                  const range = (start, stop, step) => Array.from({ length: (stop - start) / step }, () => 'q');

                  let twoDArray =
                  for(i=0; i<12; i++){
                  twoDArray.push(range(0,81,1))
                  }

                  console.log(twoDArray)





                  function genrateTwoDArray({
                  rows,
                  columns,
                  defaultValue
                  }){ return Array.from({ length:rows}, () => (
                  Array.from({length: columns}, ()=> defaultValue )
                  ))
                  }
                  console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))





                  function genrateTwoDArray({
                  rows,
                  columns,
                  defaultValue
                  }){ return Array.from({ length:rows}, () => (
                  Array.from({length: columns}, ()=> defaultValue )
                  ))
                  }
                  console.log(genrateTwoDArray({rows:3, columns:9, defaultValue: 'q'}))






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jan 1 at 6:59

























                  answered Jan 1 at 6:42









                  Mohammed AshfaqMohammed Ashfaq

                  1,7192612




                  1,7192612






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53992415%2fhow-to-fill-multidimensional-array-in-javascript%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      Npm cannot find a required file even through it is in the searched directory

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith