You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constmenu=[...restaurant.starterMenu, ...restaurant.mainMenu];for(constitemofmenu)console.log(item);// access indicesfor(constitemofmenu.entries()){console.log(`${item[0]+1}: ${item[1]}`);// first element is the index, second element is the value}// destructure itfor(const[index,value]ofmenu.entries()){console.log(`${index+1}: ${value}`);}