I'm trying to include BigQuery's query on my application, but I need to split my
html(JSON.stringify(response.result.rows, null))
to create a row every row.
Is there a way to do it without cycles?
Right now my results are {Result1},{Result2},{Result3}
...
I expect something like:
{Result1}
{Result2}
{Result3}