javascript
Bind external value inside .map javascript
setFornecedorValue(){
return this.userContext.getFornecedor().cnpjCpf;
}
montarPedidos = (pedidos: any) => {
const self = this;
return pedidos.map(function (item: any) {
return {...item, cnpjFornecedor: self.setFornecedorValue() };
});
}
montarPedidos(arrayValues);
Was this helpful?
Similar Posts