This commit is contained in:
Philippe Torrel
2026-07-07 10:29:34 +02:00
parent f3ca79e09b
commit f583bf92a3
14 changed files with 201 additions and 61 deletions

View File

@@ -39,7 +39,7 @@
// Add a new row for another student
gradesTable.push(['David', 82, 79, 91]);
// TODO: optionale Übung: gradeTable in gradesObject über eigene Funktion parseToObj() umwandeln. Tipp:
// TODO: optionale Übung: gradeTable in gradesObject über eigene Funktion parseToObj() umwandeln. Tipp: map. Beispiel 01_csv-to-obj.html aus Tag 12
const gradesTableObj = [
{
@@ -107,6 +107,7 @@
// Access to the second type of vegetable
const secondVegetable = shoppingList[1][2]; // => 'Broccoli'
console.log(shoppingList[1][3]); // => 'Spinach'
// ===============