Hello, in my code how do I get the values contained in the "data" array when calling the function (#print) from the generateString function.
var gerarString = function () {
var codproduto = 001,
var newRow = 'teste',
var iten = ([codproduto,newRow]);
var dados = new Array();
dados.push(iten);
return dados;
}
$("#imprimir").on('click', function(){
console.log(gerarString.dados);
//$("#tabvenda").prepend(gerarString.getDados());
});