How can I enter data with the push to an array with a while? because I want to graph with canvas and the only thing I need is to put the values to the arrangement with the push to print them, here is my code.
var meses = [""];
var valores = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
var consulta = "SELECT * FROM produccion WHERE area AND fecha BETWEEN #"+fecha+"# AND #"+fechaFinal+"#";
tablaRecord.Open(consulta, cadConexion);
while(!tablaRecord.eof){
meses.push();
tablaRecord.MoveNext();
}