I have a string that\'s on the page and from which I want an array of int.
2,3,0,43,23,53
I\'m writin
var ArrayData = $('#TheData').text().split(',').map(Number);
You can find more here:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map