AnalogCyan / itadakimasu

Use const declarations for variables that are never reassigned JS-0242
Anti-pattern
Minor
1 occurrence in this check
'randFoods' is never reassigned. Use 'const' instead
10const url = "https://api.itadakimasu.app";
11
12function gen(len) {
13  let randFoods = [];14  let generated = "";
15  //add the ingredients first
16  for (let i = 0; i < len - 1; i++) {