Remove unneccessary debug console.log

This commit is contained in:
Your Name 2022-11-09 11:18:37 +02:00
parent d1aeb50f29
commit 65c80f88b8
1 changed files with 0 additions and 1 deletions

View File

@ -22,7 +22,6 @@ function getFood(data) {
str += mealoption.name + ": "
mealoption.menuItems.map((menuItem, index) => {
index !== mealoption.menuItems.length - 1 ? str += menuItem.name + ", " : str += menuItem.name;
console.log(index, mealoption.menuItems.length)
})
foods.push(str);
})