js and javascript... i getting problem in how send array value from client side .js file to server side app.js into post request.
var = testParamterName=[],testParameterValue=[];
    $("#Table1 tbody tr").each(function(rowinex){
    // this basically gets the 2 column values that i require
          var i=0;
          $.each(this.cells,function(callIndex,cell){
            if(i==2) //parameter value
            {
              testParamterName.push(cell.textContent);
            } else if(i==3)
            {
            testParameterValue.push(cell.textContent);
            }
         i++;
       });
        i=0;
     });
i am getting values from a table using jQuery in a file called test.js after saving the table values into two array namely 'testParameterValue' and 'testParamterName'
now i want to send these 2 array values to my server side .js file app.js
i used the module.exports = {testParameterValue , testParametername}; but this gives an error saying module not defined..
i have tried searching the web couldn't find the solution to my problem ... the closest solution i found was that .... cannot run module.exports into files that run in the browser.
i have skipped the code where i handled a click event for submit
please help me ...Thanks in advance :)
 
    