Represents a json array that should be placed into a SQL query literally.
function (arr){ if (!(this instanceof JsonArray)) { return new JsonArray(arr); } Array.call(this); var i = -1, l = arr.length; while (++i < l) { this.push(arr[i]); }}