Preencher tabela através de Arrays

Olá comunidade!

Preciso preencher uma tabela através de diversos arrays que forma criados ao longo do processo.

Por exemplo, eu possuo os arrays: Item, Quantidade e Preço
Preciso preencher as colunas Item, Quantidade e Preço de uma tabela com o valor desses arrays. Sem que uma informação subescreva a outra.

Poderia por favor me ajudar?
Obrigada.

Hi @devrpa746 ,

Suppose the number of items in all the arrays are the same, which you are trying to pass to the datatable, then you can follow the approach shown below, where you pass each item from the array to datatable using the index:

Regards,