Posts by Livia Lima • 23 points
1 post
-
2
votes1
answer55
viewsQ: Use variable from one class to another
I have the following method: this.retorno.then(function(result){ let a = result[0].infos.inProgress; var cards = []; a.forEach(b => { let card = new Card(b.name, b.type, b.date, b.id);…