i have two functions in google apps script
code.gs:
function getdata1(e) {
// works..
return array_1;
}
function getdata2(e) {
// works..
return array_2;
}
index.html:
function getData1(e) {
google.script.run.withSuccessHandler(dispData1).getData1(e);
}
function dispData1(array_1) {
// here i can acces the value of array_1.
// NOW i need to access the values of array_2 from the other function (getData2)
}
thanks for any help