When I export my html table to csv, everything looks great. However, any prototype methods I have in my script are ALSO included in the file.
I have three methods scattered throughout my custom js file that I added to the Array objects prototype.
Array.prototype.contains = function()
Array.prototype.getSum = function()
Array.prototype.getAverage= function()
For whatever reason, these methods show up in my excel file, under my data.

When I export my html table to csv, everything looks great. However, any prototype methods I have in my script are ALSO included in the file.
I have three methods scattered throughout my custom js file that I added to the Array objects prototype.
Array.prototype.contains = function()
Array.prototype.getSum = function()
Array.prototype.getAverage= function()
For whatever reason, these methods show up in my excel file, under my data.