neerajnanvani / PracticeGitAndJs

Its an practice repo to create pull request and use more github features
0 stars 10 forks source link

Split a string, using comma as the seprator #36

Open SatyabratDeveloper opened 2 years ago

SatyabratDeveloper commented 2 years ago

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