[Javascript] How to remove commas from form fields

Hi, I have some code that takes data from Access database and through JS generates a CSV file.

the code (in a nutshell) is as follows

rowEntry += rsStudents.Fields.Item("street").Value + ",";

So I need the “street” field, to be comma-free. How can I do so?