Get data from list

I have created an html code that sends data to app inventor:

   var dataArrayyy = ["", "", "", ""];

   function chancestringwebview(varde, index) {
     dataArrayyy[index] = varde;
     window.AppInventor.setWebViewString(JSON.stringify(dataArrayyy));
   }

   chancestringwebview("s", 2)

But I can't get the data from the index in the list, what should I do? I have tried several different ways. The list will come to MIT like ["","","s",""]. Anyone have any ideas?

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.