Advertisement
Guest User

Untitled

a guest
May 24th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. for(let i =0; i < this.bag.length; i++) {
  2. if(this.bag[i].options) {
  3. for(let j= 0; j < this.bag[i].options.length; j++){
  4. carrito+= {
  5. id: this.bag[i].id,
  6. optionId: this.bag[i].options[j].id,
  7. cantidad: this.bag[i].options[j].quantatity
  8. }
  9. }
  10. } else {
  11. carrito+= {
  12. id: this.bag[i].id,
  13. }
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement