I\'ve got an array of strings. When I use .toString() to output it the quotes are not preserved. This makes it hard to build the mysql query using an \"in\". Consider the fol
The simple fix is adding the quotes yourself
for(var i=0; i
Do note that I completely ignore SQL injection issues here.