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.
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.