Skip to content
Advertisement

Convert Array in Map or 2D Array

So I basically have a gradebook that is a .csv file and is formatted like this

name, grade name, grade

I am looking for the best way to split my array so that I can access each independently but they are still related to each other.

JavaScript

This is my current code so it currently splits the original text into the array properly but the output is like this

JavaScript

when I want it like

JavaScript

Advertisement

Answer

Add this code:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement