I'm new to JavaScript programming, and I have a question that I could not find an answer to anywhere.
I have some code in Java that does some stuff with two double arrays
double[] arrX = new double[sizeA];
double[] arrY = new double[sizeB];
Then, I need to pass these two variables to a html/JavaScript code that need to use them.
Is that possible?