Tagged Questions

0
votes
3answers
528 views

JavaScript Multi-Dimensional Array

I have a Student, who is in many courses, which have many Modules for each course. So far, I have got: var myStudent = new MySchool.Student("Bart", "Simpson", "0800 Reverse", "Some Street", ...
0
votes
0answers
187 views

Js CSV to 2d array

Im going to parse CSV into JS matrix array, i want to get array[row][column] from CSV string. I know at first i need to parse csv into table, i dont want to use libs like jquery and etc. I think to ...