Description
A CSV file is like an excel sheet but in reality, is simply a text file where each row of text represents a record and every row is segregated with commas (,) each field in the row is a property of the record,
Write a function that takes a string as input and splits it into an array using commas.
Limitations: You can’t use the split method of string Bonus Part: Create an HTML table using the array
Description A CSV file is like an excel sheet but in reality, is simply a text file where each row of text represents a record and every row is segregated with commas (,) each field in the row is a property of the record,
Write a function that takes a string as input and splits it into an array using commas.
Limitations: You can’t use the split method of string Bonus Part: Create an HTML table using the array